summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-28 11:49:38 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-28 11:49:38 -0400
commit595c8e8d87d9f91e454654c3d7ad9dd49a1bfd93 (patch)
treee3d7638027c062f0d8db6be54b80a47703fc42f4 /tests
parent6c18967e19b76d109c49d7c9e34dc8fe2bfb15ad (diff)
SELECTed expressions in ORDER BY
Diffstat (limited to 'tests')
-rw-r--r--tests/order_by.lac7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/order_by.lac b/tests/order_by.lac
index 77dfa541..f2b501c4 100644
--- a/tests/order_by.lac
+++ b/tests/order_by.lac
@@ -6,3 +6,10 @@ val q2 = (SELECT * FROM t1 GROUP BY t1.A ORDER BY t1.A, t1.B)
val q3 = (SELECT t1.B FROM t1
UNION SELECT t1.B FROM t1
ORDER BY t1.B)
+
+val q4 = (SELECT t1.A, t2.D, t1.A < t2.D AS Lt
+ FROM t1, t2
+ ORDER BY Lt)
+val q5 = (SELECT t1.A, t2.D, t1.A < t2.D AS Lt
+ FROM t1, t2
+ ORDER BY t1.A, Lt, t2.D)