summaryrefslogtreecommitdiff
path: root/pygments/lexers/postgres.py
Commit message (Collapse)AuthorAgeFilesLines
* Module reorganizing: move sql stuff together, create new "shell" module.Georg Brandl2012-02-051-326/+0
|
* Merged in dvarrazzo/pygments-postgres (pull request #19)Georg Brandl2011-09-221-14/+17
|\
| * Fix current copyright year.Georg Brandl2011-07-091-1/+1
| |
| * Add changelog entry and fixup imports in postgres module.Georg Brandl2011-06-191-14/+17
| |
* | Parse CONTEXT in Postgres outputDaniele Varrazzo2011-09-011-1/+1
|/
* Added unicode strings/names to PostgreSQL lexerDaniele Varrazzo2011-04-141-5/+4
|
* Parse the language of a PostgreSQL function also when prefixDaniele Varrazzo2011-04-141-2/+6
| | | | This is the way pg_dump saves it.
* Added documentation for the PostgreSQL lexersDaniele Varrazzo2011-04-141-0/+30
|
* Fix occasional parsing of PL/pgSQL using the SQL tokensDaniele Varrazzo2011-04-141-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 parsingDaniele Varrazzo2011-04-141-1/+1
|
* Don't mess up the lines in malformed psql sessionDaniele Varrazzo2011-04-141-1/+1
| | | | Avoid interpreting a $$ string as a prompt when the psql prompt is missing.
* Dropped unused regexp in psql parserDaniele Varrazzo2011-04-131-1/+0
|
* Detect multiline strings and error output in psql sessionDaniele Varrazzo2011-04-131-4/+2
|
* The prompt in psql must start with a non-blank characterDaniele Varrazzo2011-04-131-1/+1
| | | | Otherwise we are fooled by the arrows in the EXPLAIN output.
* Case insensitive detection of sql language in PostgreSQL stored proceduresDaniele Varrazzo2011-04-131-1/+1
|
* Consider bracket punctuation in PostgreSQL (array constructor)Daniele Varrazzo2011-04-121-1/+1
|
* Adding a Pl/pgSQL lexerDaniele Varrazzo2011-04-121-3/+30
|
* Added list of pseudo-datatypes to PostgreSQL lexerDaniele Varrazzo2011-04-121-2/+4
|
* Identify the name of a PostgreSQL procedure language also when quotedDaniele Varrazzo2011-04-121-1/+1
|
* Detect console prompt line in an interactive psql sessionDaniele Varrazzo2011-04-121-0/+8
|
* Multiline input in psql console without requiring prompt at each lineDaniele Varrazzo2011-04-121-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 lexerDaniele Varrazzo2011-04-121-12/+26
|
* psql can receive many backslash commands on the same lineDaniele Varrazzo2011-04-121-1/+2
|
* Added FATAL and DETAIL lines as psql notificationsDaniele Varrazzo2011-04-101-3/+6
|
* More tolerant psql promptDaniele Varrazzo2011-04-101-1/+2
| | | | Recognize stuff as "user@host db=>" too.
* Adding support to add sub-languages in dollar-quoted stringsDaniele Varrazzo2011-04-051-1/+48
|
* Handle sql placeholders in PostgreSQL lexerDaniele Varrazzo2011-04-051-0/+1
|
* Handle PostgreSQL escaped stringsDaniele Varrazzo2011-04-051-1/+1
|
* Recognize NOTICE log level in psql outputDaniele Varrazzo2011-04-041-1/+1
|
* Better psql commands parserDaniele Varrazzo2011-04-041-5/+12
| | | | Recognize strings and quoted variables. Handled as a separate state.
* Multi-character operators in PostgreSQLDaniele Varrazzo2011-04-041-1/+1
|
* Colon after the message level consistent with the level name in psql noticesDaniele Varrazzo2011-04-041-1/+1
|
* Added prompt style => in psql lexerDaniele Varrazzo2011-04-041-1/+1
|
* Added support for psql variablesDaniele Varrazzo2011-04-041-3/+6
|
* Look for datatypes before the keywordsDaniele Varrazzo2011-04-011-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 lexersDaniele Varrazzo2011-04-011-0/+121