summaryrefslogtreecommitdiff
path: root/tests/order_by.ur
diff options
context:
space:
mode:
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