diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-05-30 09:31:50 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-05-30 09:31:50 -0400 |
commit | ce09df0fd2af2465c1df0fbeacf0cb6a07cd2add (patch) | |
tree | fbcc9d6f1fc4ec715af7af96f489195487cc4fc0 /tests | |
parent | 8fa4027917a95498a0b354e614aaad7e0210e2d7 (diff) |
Fix bug with string literals in unAs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/t_t.ur | 5 |
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) |