diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-09-07 14:07:10 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-09-07 14:07:10 -0400 |
commit | a034349c535b054c9d31beb4e1133f8cd0b68c5a (patch) | |
tree | 3c2892afafe8179b14dca536dcd0b0da34165b96 /tests | |
parent | 071f5b9a8c042414e427d72142c078a64cf9b0d7 (diff) |
Parsing INSERT
Diffstat (limited to 'tests')
-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> |