summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-21 14:45:31 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-21 14:45:31 -0400
commita2e5705c43f9705768652845b30fc3605cbb4873 (patch)
tree6c4e1852eae259c312a227afc89424e99ff14cdd /tests
parent919c2a950ff74af266791e88a258c7ff09be4839 (diff)
Resolving lingering type class constraints
Diffstat (limited to 'tests')
-rw-r--r--tests/group_by.lac2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/group_by.lac b/tests/group_by.lac
index 50cf553a..569676d5 100644
--- a/tests/group_by.lac
+++ b/tests/group_by.lac
@@ -8,4 +8,4 @@ val q3 = (SELECT * FROM t1 WHERE t1.A = 0 GROUP BY t1.B)
val q4 = (SELECT * FROM t1 WHERE t1.A = 0 GROUP BY t1.C HAVING t1.C < 0.2)
val q5 = (SELECT t1.A, t2.D FROM t1, t2 GROUP BY t2.D, t1.A)
-val q6 = (SELECT t1.A, t2.D FROM t1, t2 WHERE t1.C = 0.0 GROUP BY t2.D, t1.A HAVING t1.A = 0 AND t2.D = 17)
+val q6 = (SELECT t1.A, t2.D FROM t1, t2 WHERE t1.C = 0.0 GROUP BY t2.D, t1.A HAVING t1.A = t1.A AND t2.D = 17)