summaryrefslogtreecommitdiff
path: root/tests/t_t.ur
diff options
context:
space:
mode:
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)