diff tests/order_by.ur @ 268:bacd0ba869e1

Monoize ASC/DESC
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 16:54:13 -0400
parents ee51e9d35c9b
children
line wrap: on
line diff
--- a/tests/order_by.ur	Sun Aug 31 16:32:49 2008 -0400
+++ b/tests/order_by.ur	Sun Aug 31 16:54:13 2008 -0400
@@ -12,7 +12,7 @@
         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