summaryrefslogtreecommitdiff
path: root/tests/query.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/query.ur')
-rw-r--r--tests/query.ur3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/query.ur b/tests/query.ur
index afe5fab8..334c3d41 100644
--- a/tests/query.ur
+++ b/tests/query.ur
@@ -3,8 +3,7 @@ table t2 : {A : float, D : int}
datatype list a = Nil | Cons of a * list a
-(*val q1 = (SELECT * FROM t1)*)
-val q1 = (SELECT * FROM t1 WHERE t1.A = 0)
+val q1 = (SELECT * FROM t1)
val r1 : transaction (list {A : int, B : string, C : float, D : bool}) =
query q1