diff options
| author | Yago Riveiro <yago.riveiro@gmail.com> | 2013-04-25 15:21:44 +0100 |
|---|---|---|
| committer | Yago Riveiro <yago.riveiro@gmail.com> | 2013-04-25 15:21:44 +0100 |
| commit | 572b69c1e630506d81ef594b15febc37bb011318 (patch) | |
| tree | 0b9ba96e0bff162dd59dbac3f6f944cc5e3da932 /sqlparse/keywords.py | |
| parent | fd480bf40646cdb53bce377db5d11dc52a760dad (diff) | |
| download | sqlparse-572b69c1e630506d81ef594b15febc37bb011318.tar.gz | |
Added STRAIGHT_JOIN token.
Diffstat (limited to 'sqlparse/keywords.py')
| -rw-r--r-- | sqlparse/keywords.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlparse/keywords.py b/sqlparse/keywords.py index ed741d4..92a0b58 100644 --- a/sqlparse/keywords.py +++ b/sqlparse/keywords.py @@ -536,6 +536,7 @@ KEYWORDS_COMMON = { 'FROM': tokens.Keyword, 'INNER': tokens.Keyword, 'JOIN': tokens.Keyword, + 'STRAIGHT_JOIN': tokens.Keyword, 'AND': tokens.Keyword, 'OR': tokens.Keyword, 'LIKE': tokens.Keyword, |
