diff options
Diffstat (limited to 'tests/insert.ur')
-rw-r--r-- | tests/insert.ur | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/insert.ur b/tests/insert.ur index 58db4ef1..c718fb7e 100644 --- a/tests/insert.ur +++ b/tests/insert.ur @@ -1,5 +1,5 @@ table t1 : {A : int, B : string, C : float, D : bool} fun main () : transaction page = - () <- dml (insert t1 {A = 5, B = "6", C = 7.0, D = True}); + () <- dml (INSERT INTO t1 (A, B, C, D) VALUES (5, "6", 7.0, TRUE)); return <html><body>Inserted.</body></html> |