From 8962e7c69184dba00371c0ae52a9676dc4b40282 Mon Sep 17 00:00:00 2001 From: Paul McGuire Date: Sat, 14 Jul 2018 16:53:28 -0500 Subject: Add "group by" case to select_parser.py tests Update test strings to demonstrate fix in group_by_terms results - original bug was reported on SF bugs by Adam Groszer --- examples/select_parser.py | 1 + 1 file changed, 1 insertion(+) (limited to 'examples/select_parser.py') diff --git a/examples/select_parser.py b/examples/select_parser.py index b619173..5925ad8 100644 --- a/examples/select_parser.py +++ b/examples/select_parser.py @@ -121,6 +121,7 @@ tests = """\ select a, db.table.b as BBB from db.table where 1=1 and BBB='yes' select a, db.table.b as BBB from test_table,db.table where 1=1 and BBB='yes' select a, db.table.b as BBB from test_table,db.table where 1=1 and BBB='yes' limit 50 + select a, b from test_table where (1=1 or 2=3) and b='yes' group by zx having b=2 order by 1 """ select_stmt.runTests(tests) -- cgit v1.2.1