summaryrefslogtreecommitdiff
path: root/pygments/lexers/sql.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove all files, redirect to GitHub.HEADmasterMatth?us G. Chajdas2019-11-101-729/+0
|
* Fixup all headers and some more minor problems.2.4.2Georg Brandl2019-05-281-1/+1
|
* Fix a small bug in the SQL analysis.Matth?us G. Chajdas2019-01-041-2/+8
| | | | Updated CHANGES as well, and moved the LLVM PR to the right list.
* Merged in roskakori/pygments-analyze-sql (pull request #672)Anteru2019-01-041-2/+50
|\ | | | | | | Added analyse_text() for SQL
| * Added analyse_text() that attempts to detect MySQL and Transact-SQL.Thomas Aglassinger2016-10-011-2/+50
| |
* | Merge heads.Georg Brandl2018-11-281-2/+2
|\ \
| * | Fix invalid escapes due to missing raw string prefix.Georg Brandl2018-11-281-2/+2
| | |
* | | Be more Pythonic, use a for instead of while 1: try: nextMiro Hron?ok2018-07-041-13/+4
| | |
* | | PEP 479: Raising StopIteration from a generator is now an errorMiro Hron?ok2018-07-041-1/+4
|/ / | | | | | | | | | | So we return instead. Fix needed for Python 3.7. Fixes https://bitbucket.org/birkenfeld/pygments-main/issues/1457
* | Copyright update.Georg Brandl2017-01-221-1/+1
|/
* Merged in roskakori/pygments-tsql (pull request #577)Tim Hatch2016-05-311-3/+3
|\ | | | | | | Add lexer for Transact-SQL
| * Fixed single line SQL comments on end of file without a trailing newline.Thomas Aglassinger2016-03-241-3/+3
| |
* | Improved detection of single line SQL comments as suggested in pull request ↵Thomas Aglassinger2016-03-291-1/+1
| | | | | | | | #578. Now it even works in combination with re.DOTALL.
* | Fixed detection of Number.Float in Transact-SQL for corner cases like "1." ↵Thomas Aglassinger2016-03-241-2/+6
| | | | | | | | and "1.e2."
* | Fixed detection of Transact-SQL comments in the last line of a source code ↵Thomas Aglassinger2016-03-231-1/+1
| | | | | | | | without a newline at the end.
* | Fixed that regex to detect Number.Float shadowed regex for Number.Integer ↵Thomas Aglassinger2016-03-231-1/+2
| | | | | | | | for Transact-SQL.
* | Fixed minus operator for Transact-SQL.Thomas Aglassinger2016-03-221-3/+3
| |
* | Added lexer for Transact-SQL as used by Microsoft SQL Server and Sybase.Thomas Aglassinger2016-03-211-2/+55
|/
* merge with stableGeorg Brandl2016-02-141-10/+25
|\
| * String prefixes and dollar-quoted string delimiters lexing in Postgresql. ↵Miikka Salminen2016-02-081-10/+25
| | | | | | | | Also closes issue #886.
* | Make postgres strings use their own state.Georg Brandl2016-02-081-2/+12
|/
* Closes #1206: add IF and ELSIF to SQL keywords.Georg Brandl2016-02-031-3/+3
|
* Add 'flush' as a keyword in the mysql lexerHong Xu2015-05-181-2/+2
|
* Copyright year update.Georg Brandl2015-01-211-1/+1
|
* Simplify charclasses in a few more modulesGeorg Brandl2014-11-061-9/+9
|
* Closes #1008: allow $ in names for Oracle SQL.Georg Brandl2014-10-071-1/+1
|
* use words() in sqlGeorg Brandl2014-09-191-88/+95
|
* Make all keyword lists in special modules into tuples.Georg Brandl2014-09-191-3/+3
| | | | | Tuples of strings are stored as prebuild constants in the .pyc file instead of having to build a list element by element at runtime.
* Fix parsing of escaped quotes in strings in MySqlLexerbgirarde2014-08-211-4/+3
|
* Replace a-z0-9_ with \w when IGNORECASE is setGaurav Jain2014-05-151-5/+5
|
* Overlap due to case insensitive modeGaurav Jain2014-05-151-6/+6
|
* Replace all occurences of [a-zA-Z0-9_] with \wGaurav Jain2014-05-141-4/+4
|
* Refactor RQL into the existing SQL lexer file.Jharrod LaFon2014-04-141-1/+32
|
* use versionadded directivesGeorg Brandl2014-01-191-4/+4
|
* Finalize single-source port for Py2.[67] and Py3.3+.Georg Brandl2014-01-181-7/+9
|
* new year in copyright noticeGeorg Brandl2014-01-101-1/+1
|
* Closes #853: fix typo in SQL lexer.Georg Brandl2013-05-191-1/+1
|
* Happy new year 2013.Georg Brandl2013-01-091-1/+1
|
* Closes #749: get rid of deepcopy usage to restore 2.4 compatibilityGeorg Brandl2012-05-081-8/+2
|
* Minor lint fixesTim Hatch2012-03-091-4/+4
| | | | | | | | --- pygments/lexers/other.py | 12 ++++++------ pygments/lexers/shell.py | 6 +++--- pygments/lexers/sql.py | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-)
* Closes #739: replace generator-send with custom class to work under 2.4.Georg Brandl2012-02-181-7/+16
|
* Copyright update.Georg Brandl2012-02-051-1/+1
|
* Module reorganizing: move sql stuff together, create new "shell" module.Georg Brandl2012-02-051-0/+556