aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/order_by.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 16:54:13 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-08-31 16:54:13 -0400
commit83431c3e4c3fa74cae515520be04a0be3c11fef2 (patch)
treeb7d5f19b05bbef691eeeb0b4103fe952bcb42cb2 /tests/order_by.ur
parent3b3eb1273341bcc8787ab2efa9f7fe7cfd2f9235 (diff)
Monoize ASC/DESC
Diffstat (limited to 'tests/order_by.ur')
-rw-r--r--tests/order_by.ur2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/order_by.ur b/tests/order_by.ur
index dbe041c2..de584fda 100644
--- a/tests/order_by.ur
+++ b/tests/order_by.ur
@@ -12,7 +12,7 @@ val q4 = (SELECT t1.A, t2.D, t1.A < t2.D AS Lt
ORDER BY Lt)
val q5 = (SELECT t1.A, t1.B, t2.D, t1.A < t2.D AS Lt
FROM t1, t2
- ORDER BY t1.A, Lt, t2.D)
+ ORDER BY t1.A DESC, Lt ASC, t2.D DESC)
datatype list a = Nil | Cons of a * list a