Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Module reorganizing: move sql stuff together, create new "shell" module. | Georg Brandl | 2012-02-05 | 1 | -326/+0 |
| | |||||
* | Merged in dvarrazzo/pygments-postgres (pull request #19) | Georg Brandl | 2011-09-22 | 1 | -14/+17 |
|\ | |||||
| * | Fix current copyright year. | Georg Brandl | 2011-07-09 | 1 | -1/+1 |
| | | |||||
| * | Add changelog entry and fixup imports in postgres module. | Georg Brandl | 2011-06-19 | 1 | -14/+17 |
| | | |||||
* | | Parse CONTEXT in Postgres output | Daniele Varrazzo | 2011-09-01 | 1 | -1/+1 |
|/ | |||||
* | Added unicode strings/names to PostgreSQL lexer | Daniele Varrazzo | 2011-04-14 | 1 | -5/+4 |
| | |||||
* | Parse the language of a PostgreSQL function also when prefix | Daniele Varrazzo | 2011-04-14 | 1 | -2/+6 |
| | | | | This is the way pg_dump saves it. | ||||
* | Added documentation for the PostgreSQL lexers | Daniele Varrazzo | 2011-04-14 | 1 | -0/+30 |
| | |||||
* | Fix occasional parsing of PL/pgSQL using the SQL tokens | Daniele Varrazzo | 2011-04-14 | 1 | -26/+51 |
| | | | | | Inheritance class refactored avoiding a base class with a _tokens attribute that may interfere with the creation of the subclass _tokens. | ||||
* | Ignore case of the language in PostgreSQL $-string parsing | Daniele Varrazzo | 2011-04-14 | 1 | -1/+1 |
| | |||||
* | Don't mess up the lines in malformed psql session | Daniele Varrazzo | 2011-04-14 | 1 | -1/+1 |
| | | | | Avoid interpreting a $$ string as a prompt when the psql prompt is missing. | ||||
* | Dropped unused regexp in psql parser | Daniele Varrazzo | 2011-04-13 | 1 | -1/+0 |
| | |||||
* | Detect multiline strings and error output in psql session | Daniele Varrazzo | 2011-04-13 | 1 | -4/+2 |
| | |||||
* | The prompt in psql must start with a non-blank character | Daniele Varrazzo | 2011-04-13 | 1 | -1/+1 |
| | | | | Otherwise we are fooled by the arrows in the EXPLAIN output. | ||||
* | Case insensitive detection of sql language in PostgreSQL stored procedures | Daniele Varrazzo | 2011-04-13 | 1 | -1/+1 |
| | |||||
* | Consider bracket punctuation in PostgreSQL (array constructor) | Daniele Varrazzo | 2011-04-12 | 1 | -1/+1 |
| | |||||
* | Adding a Pl/pgSQL lexer | Daniele Varrazzo | 2011-04-12 | 1 | -3/+30 |
| | |||||
* | Added list of pseudo-datatypes to PostgreSQL lexer | Daniele Varrazzo | 2011-04-12 | 1 | -2/+4 |
| | |||||
* | Identify the name of a PostgreSQL procedure language also when quoted | Daniele Varrazzo | 2011-04-12 | 1 | -1/+1 |
| | |||||
* | Detect console prompt line in an interactive psql session | Daniele Varrazzo | 2011-04-12 | 1 | -0/+8 |
| | |||||
* | Multiline input in psql console without requiring prompt at each line | Daniele Varrazzo | 2011-04-12 | 1 | -28/+61 |
| | | | | | Also support multiline comments in the command, albeit mixing them with propmts is still broken. | ||||
* | Regex part of the psql lexer split from the Postgres SQL lexer | Daniele Varrazzo | 2011-04-12 | 1 | -12/+26 |
| | |||||
* | psql can receive many backslash commands on the same line | Daniele Varrazzo | 2011-04-12 | 1 | -1/+2 |
| | |||||
* | Added FATAL and DETAIL lines as psql notifications | Daniele Varrazzo | 2011-04-10 | 1 | -3/+6 |
| | |||||
* | More tolerant psql prompt | Daniele Varrazzo | 2011-04-10 | 1 | -1/+2 |
| | | | | Recognize stuff as "user@host db=>" too. | ||||
* | Adding support to add sub-languages in dollar-quoted strings | Daniele Varrazzo | 2011-04-05 | 1 | -1/+48 |
| | |||||
* | Handle sql placeholders in PostgreSQL lexer | Daniele Varrazzo | 2011-04-05 | 1 | -0/+1 |
| | |||||
* | Handle PostgreSQL escaped strings | Daniele Varrazzo | 2011-04-05 | 1 | -1/+1 |
| | |||||
* | Recognize NOTICE log level in psql output | Daniele Varrazzo | 2011-04-04 | 1 | -1/+1 |
| | |||||
* | Better psql commands parser | Daniele Varrazzo | 2011-04-04 | 1 | -5/+12 |
| | | | | Recognize strings and quoted variables. Handled as a separate state. | ||||
* | Multi-character operators in PostgreSQL | Daniele Varrazzo | 2011-04-04 | 1 | -1/+1 |
| | |||||
* | Colon after the message level consistent with the level name in psql notices | Daniele Varrazzo | 2011-04-04 | 1 | -1/+1 |
| | |||||
* | Added prompt style => in psql lexer | Daniele Varrazzo | 2011-04-04 | 1 | -1/+1 |
| | |||||
* | Added support for psql variables | Daniele Varrazzo | 2011-04-04 | 1 | -3/+6 |
| | |||||
* | Look for datatypes before the keywords | Daniele Varrazzo | 2011-04-01 | 1 | -1/+1 |
| | | | | | Some datatypes are keywords, some are not. Showing the former as keywords makes a messy result. | ||||
* | Added PostgreSQL specific SQL and interactive session lexers | Daniele Varrazzo | 2011-04-01 | 1 | -0/+121 |