summaryrefslogtreecommitdiff
path: root/tests/pkey.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pkey.ur')
-rw-r--r--tests/pkey.ur6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/pkey.ur b/tests/pkey.ur
new file mode 100644
index 00000000..4efbd032
--- /dev/null
+++ b/tests/pkey.ur
@@ -0,0 +1,6 @@
+table t : {A : int, B : int}
+ PRIMARY KEY (A, B)
+
+fun main () : transaction page =
+ queryI (SELECT * FROM t) (fn _ => return ());
+ return <xml/>