summaryrefslogtreecommitdiff
path: root/sqlparse/tokens.py
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2009-07-12 09:28:05 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2009-07-12 09:28:05 +0200
commit9114ff791c224f8edfa6f1ff00ae57e8e3296f75 (patch)
tree4702e934c4f6d9639fb704329ecdb9973ae26d12 /sqlparse/tokens.py
parentd47657d07ab900604547efd0a4eb288775ad43b9 (diff)
downloadsqlparse-9114ff791c224f8edfa6f1ff00ae57e8e3296f75.tar.gz
Distinguish between operators that are part of a comparsion and others.
Diffstat (limited to 'sqlparse/tokens.py')
-rw-r--r--sqlparse/tokens.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlparse/tokens.py b/sqlparse/tokens.py
index c66bb9b..5d1458a 100644
--- a/sqlparse/tokens.py
+++ b/sqlparse/tokens.py
@@ -58,6 +58,7 @@ String = Literal.String
Number = Literal.Number
Punctuation = Token.Punctuation
Operator = Token.Operator
+Comparsion = Operator.Comparsion
Wildcard = Token.Wildcard
Comment = Token.Comment
Assignment = Token.Assignement