summaryrefslogtreecommitdiff
path: root/tests/t_t.ur
blob: a20e45f129a3552112eaf3a6e8747f58dce0a9d6 (plain)
1
2
3
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)