diff options
author | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-05-11 10:33:13 -0700 |
---|---|---|
committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-06-12 12:31:27 -0700 |
commit | 90ef13bf9a8ebdefab25669173e07ae5530e9c89 (patch) | |
tree | 19b38fbb6b1b8a1eb34a51571da6edc1334589eb /sqlparse/sql.py | |
parent | 50de51a5d6abb2a2f8649091912090983dab843d (diff) | |
download | sqlparse-90ef13bf9a8ebdefab25669173e07ae5530e9c89.tar.gz |
Add sql.Operation tokenlist
Diffstat (limited to 'sqlparse/sql.py')
-rw-r--r-- | sqlparse/sql.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sqlparse/sql.py b/sqlparse/sql.py index 43a89e7..e24c10f 100644 --- a/sqlparse/sql.py +++ b/sqlparse/sql.py @@ -588,3 +588,7 @@ class Begin(TokenList): """A BEGIN/END block.""" M_OPEN = T.Keyword, 'BEGIN' M_CLOSE = T.Keyword, 'END' + + +class Operation(TokenList): + """Grouping of operations""" |