diff options
author | William Ivanski <william.ivanski@gmail.com> | 2019-04-16 19:18:42 -0300 |
---|---|---|
committer | Andi Albrecht <albrecht.andi@gmail.com> | 2019-04-17 11:41:14 +0200 |
commit | 5076be029aba75d72aa52ab3da9f81e6aaf04cc1 (patch) | |
tree | f2128273011cf677bf7d58c9fa2ad2f10e47e6a6 /sqlparse | |
parent | 3f2ee7b32f749dc73ca47fecd029f7f099add385 (diff) | |
download | sqlparse-5076be029aba75d72aa52ab3da9f81e6aaf04cc1.tar.gz |
Fixes #485
Diffstat (limited to 'sqlparse')
-rw-r--r-- | sqlparse/engine/statement_splitter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/engine/statement_splitter.py b/sqlparse/engine/statement_splitter.py index c6c7dde..6c4be8e 100644 --- a/sqlparse/engine/statement_splitter.py +++ b/sqlparse/engine/statement_splitter.py @@ -36,7 +36,7 @@ class StatementSplitter(object): elif ttype not in T.Keyword: # if normal token return return 0 - # Everything after here is ttype = T.Keyword or ttype = T. + # Everything after here is ttype = T.Keyword # Also to note, once entered an If statement you are done and basically # returning unified = value.upper() |