diff tests/t_t.ur @ 1467:8fce85939259

Fix bug with string literals in unAs
author Adam Chlipala <adam@chlipala.net>
date Mon, 30 May 2011 09:31:50 -0400
parents e2d7bd41f527
children
line wrap: on
line diff
--- a/tests/t_t.ur	Mon May 30 07:48:08 2011 -0400
+++ b/tests/t_t.ur	Mon May 30 09:31:50 2011 -0400
@@ -1,3 +1,4 @@
-table t : {A : int}
+table t : {A : int, B : string}
 
-task initialize = fn () => dml (UPDATE t SET A = A + 1 WHERE TRUE)
+task initialize = fn () => dml (UPDATE t SET A = A + 1 WHERE TRUE);
+                     dml (UPDATE t SET B = 'q' WHERE TRUE)