summaryrefslogtreecommitdiff
path: root/sqlparse/engine
diff options
context:
space:
mode:
Diffstat (limited to 'sqlparse/engine')
-rw-r--r--sqlparse/engine/grouping.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/engine/grouping.py b/sqlparse/engine/grouping.py
index f7953e7..c7c0d42 100644
--- a/sqlparse/engine/grouping.py
+++ b/sqlparse/engine/grouping.py
@@ -223,9 +223,9 @@ def group_functions(tlist):
has_create = False
has_table = False
for tmp_token in tlist.tokens:
- if tmp_token.value == u'CREATE':
+ if tmp_token.value == 'CREATE':
has_create = True
- if tmp_token.value == u'TABLE':
+ if tmp_token.value == 'TABLE':
has_table = True
if has_create and has_table:
return