diff options
| author | Adam Greenhall <agreenhall@lyft.com> | 2015-09-12 01:14:44 -0700 |
|---|---|---|
| committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-06-06 06:31:35 -0700 |
| commit | 09de892c3b4e14d9b1a765d44e4824ec88e7e0eb (patch) | |
| tree | 19060251314129084bd01f79d60ae786b37ae057 /sqlparse | |
| parent | cccb3d866906bc6d701bad1793102e31c038b28e (diff) | |
| download | sqlparse-09de892c3b4e14d9b1a765d44e4824ec88e7e0eb.tar.gz | |
Fix/Test Limit statements
Diffstat (limited to 'sqlparse')
| -rw-r--r-- | sqlparse/filters.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlparse/filters.py b/sqlparse/filters.py index 0d0be5c..2f0e3b9 100644 --- a/sqlparse/filters.py +++ b/sqlparse/filters.py @@ -340,7 +340,7 @@ class AlignedIndentFilter: 'FROM', 'JOIN', 'ON', 'WHERE', 'AND', 'OR', - 'GROUP', 'HAVING', + 'GROUP', 'HAVING', 'LIMIT', 'ORDER', 'UNION', 'VALUES', 'SET', 'BETWEEN', 'EXCEPT', ) |
