From 83431c3e4c3fa74cae515520be04a0be3c11fef2 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 31 Aug 2008 16:54:13 -0400 Subject: Monoize ASC/DESC --- tests/order_by.ur | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/order_by.ur') 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 -- cgit v1.2.3