summaryrefslogtreecommitdiff
path: root/tests/init.ur
blob: 8040612d2139d32cedc8ab5e1ad2de6332b25791 (plain)
1
2
3
4
5
6
sequence seq
table fred : {A : int, B : int}

task initialize = fn () =>
    setval seq 1;
    dml (INSERT INTO fred (A, B) VALUES (0, 1))