summaryrefslogtreecommitdiff
path: root/tests/selclause.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/selclause.ur')
-rw-r--r--tests/selclause.ur6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/selclause.ur b/tests/selclause.ur
new file mode 100644
index 00000000..484c1ebc
--- /dev/null
+++ b/tests/selclause.ur
@@ -0,0 +1,6 @@
+table t : { A : int, B : string, C : float }
+table u : { D : int, E : string, F : float }
+
+val q : transaction (list {T : { A : int, B : string, C : float}, U : { D : int }, X : string }) =
+ queryL (SELECT t.*, u.D, 'hi' AS X
+ FROM t, u)