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.ur4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/t_t.ur b/tests/t_t.ur
new file mode 100644
index 0000000..a20e45f
--- /dev/null
+++ b/tests/t_t.ur
@@ -0,0 +1,4 @@
+table t : {A : int, B : string}
+
+task initialize = fn () => dml (UPDATE t SET A = A + 1 WHERE TRUE);
+ dml (UPDATE t SET B = 'q' WHERE TRUE)