summaryrefslogtreecommitdiff
path: root/sqlparse/keywords.py
Commit message (Expand)AuthorAgeFilesLines
* Add UNLOCK keywordOleg Broytman2017-04-141-0/+1
* CONCURRENTLY should be handled as a keywordRowan Seymour2017-02-091-0/+1
* Don't treat GROUPS as a keyword, it's too common for table names.Andi Albrecht2017-01-241-1/+2
* Don't treat STATE as a keyword, it causes too much troubles (fixes #296).Andi Albrecht2017-01-231-1/+1
* Fix parsing of UNION ALL (fixes #294).Andi Albrecht2016-09-261-0/+1
* Correct license link (fixes #288).Andi Albrecht2016-09-141-1/+1
* Fix parsing of names containing special chars (fixes 291).Andi Albrecht2016-09-141-2/+2
* Alternate solution for #277Victor Uriarte2016-08-131-1/+1
* Revert "Parse double dollars (PostgreSQL) as literal strings (fixes #277)."Victor Uriarte2016-08-131-11/+2
* Parse double dollars (PostgreSQL) as literal strings (fixes #277).Andi Albrecht2016-08-131-2/+11
* Format keywords.pyVictor Uriarte2016-06-281-2/+4
* Merge pull request #269 from dlenski/oracle-11g-keywordsVik2016-06-281-1/+134
|\
| * add all Oracle 11g NON-RESERVED keywords (in a separate dict, as @vmuriart su...Dan Lenski2016-06-281-1/+106
| * I think ROWID, ROWLABEL, ROWNUM, and SYSDATE should be classified as Name.Bui...Dan Lenski2016-06-261-4/+4
| * add all Oracle 11g reserved words that aren't already in sqlparse.keywordsDan Lenski2016-06-261-0/+28
* | Add RETURNING keywordDarik Gamble2016-06-241-0/+1
|/
* Rewrite regex to allow spaces between `name` and `.`Victor Uriarte2016-06-041-1/+5
* Clean regex for Number tokensVictor Uriarte2016-06-041-4/+6
* Simplify regex [^\W\d_]Victor Uriarte2016-06-041-6/+10
* Refactor regex Func/keyword exceptions togetherVictor Uriarte2016-06-041-5/+3
* Rewrite wildcard and placeholder regexVictor Uriarte2016-06-041-4/+7
* Improve Comment Regex and add Comment.Hint for OracleVictor Uriarte2016-06-041-4/+4
* Allow re to compile onceVictor Uriarte2016-06-041-0/+5
* Simplify multi-line commentsVictor Uriarte2016-06-041-8/+3
* Add or Update copyright year to filesVictor Uriarte2016-06-041-0/+5
* Refactor var Lexer.tokens & func is_keywordVictor Uriarte2016-05-291-0/+67
* Token keyword correctionCauĂȘ Beloni2016-03-291-1/+1
* Ensure get_type() works for queries that use WITH.Andrew Tipton2016-03-021-1/+1
* Add keyword 'SEQUENCE'Shen Longxing2015-12-221-0/+1
* fix issue #215Shen Longxing2015-12-181-0/+1
* Sort Name.Builtin.Andi Albrecht2015-01-171-5/+5
* Add TINYINT keyword (fixes #154).Andi Albrecht2015-01-171-0/+1
* Add SIGNED keyword (fixes #155).Andi Albrecht2015-01-171-0/+1
* Add UNSIGNED keyword (fixes #156).Andi Albrecht2015-01-171-0/+1
* Revert last change.Andi Albrecht2014-11-301-1/+1
* Clean up keywords a bit.Andi Albrecht2014-11-301-1/+1
* Issue 124 - Added COLLECT keywordCristian Orellana2014-01-161-0/+1
* Fix: fixed COALESCE keyword, it had a type. Add: Added MERGE keywordCristian Orellana2014-01-091-1/+2
* Support for BEGIN/END blocks, add FOREACH keyword.Andi Albrecht2013-11-191-1/+2
* Update keywords.pyVictor Hahn2013-10-291-4/+4
* add FULL to common keywords (frequently used in OUTER JOIN definitions)Alexander Beedie2013-09-021-0/+1
* Added token 'USE' to keywordsmulos2013-06-061-0/+1
* Fix typo in keyword list (fixes issue92).Andi Albrecht2013-04-281-1/+1
* Added STRAIGHT_JOIN token.Yago Riveiro2013-04-251-0/+1
* Add order criterion to identifier in ORDER BY clause (fixes #89).Andi Albrecht2013-04-051-2/+2
* PEP8'ified to code a bit.Andi Albrecht2012-11-121-6/+6
* Don't handle single chars as keywords.Andi Albrecht2011-07-251-3/+3
* Handle REPLACE as DML token and recognize hex numbers (thanks Ervin).Andi Albrecht2011-02-281-1/+1
* Fix typo (thanks again, Kris).Andi Albrecht2011-01-261-1/+1
* Add VARCHAR2 and LONG to keywords (fixes issue16, fixes issue19).Andi Albrecht2010-11-211-0/+2