From 725ce6746ebcd76fc3a8c7aa3248805493d71fa0 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sun, 7 Sep 2008 13:47:10 -0400 Subject: Elaborated 'insert' --- tests/insert.ur | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tests/insert.ur (limited to 'tests/insert.ur') diff --git a/tests/insert.ur b/tests/insert.ur new file mode 100644 index 00000000..58db4ef1 --- /dev/null +++ b/tests/insert.ur @@ -0,0 +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}); + return Inserted. -- cgit v1.2.3