summaryrefslogtreecommitdiff
path: root/tests/t_t.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2011-05-30 09:31:50 -0400
committerGravatar Adam Chlipala <adam@chlipala.net>2011-05-30 09:31:50 -0400
commit7281024b45db2ddcc54cf6257fe5559b9b07aa93 (patch)
treefbcc9d6f1fc4ec715af7af96f489195487cc4fc0 /tests/t_t.ur
parent62abdfd0a23e35cbb1415ff48a0af3da9d702880 (diff)
Fix bug with string literals in unAs
Diffstat (limited to 'tests/t_t.ur')
-rw-r--r--tests/t_t.ur5
1 files changed, 3 insertions, 2 deletions
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)