From 7281024b45db2ddcc54cf6257fe5559b9b07aa93 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Mon, 30 May 2011 09:31:50 -0400 Subject: Fix bug with string literals in unAs --- tests/t_t.ur | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/t_t.ur') diff --git a/tests/t_t.ur b/tests/t_t.ur index 9e38a30d..a20e45f1 100644 --- a/tests/t_t.ur +++ b/tests/t_t.ur @@ -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) -- cgit v1.2.3