aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/order_by.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 08:32:18 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 08:32:18 -0400
commit447b60afccc89ef18d8f92a260dd1fcdf735898e (patch)
tree93d1ffca9832084286525896afc4c17eaf5d23f4 /tests/order_by.ur
parent508290e29047e068b9db4b02485fefd9e3ced81c (diff)
Laconic -> Ur
Diffstat (limited to 'tests/order_by.ur')
-rw-r--r--tests/order_by.ur15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/order_by.ur b/tests/order_by.ur
new file mode 100644
index 00000000..f2b501c4
--- /dev/null
+++ b/tests/order_by.ur
@@ -0,0 +1,15 @@
+table t1 : {A : int, B : string, C : float}
+table t2 : {A : float, D : int}
+
+val q1 = (SELECT * FROM t1 ORDER BY t1.A, t1.B)
+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)