diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2009-07-12 09:28:05 +0200 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2009-07-12 09:28:05 +0200 |
| commit | 9114ff791c224f8edfa6f1ff00ae57e8e3296f75 (patch) | |
| tree | 4702e934c4f6d9639fb704329ecdb9973ae26d12 /sqlparse/tokens.py | |
| parent | d47657d07ab900604547efd0a4eb288775ad43b9 (diff) | |
| download | sqlparse-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.py | 1 |
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 |
