summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-11-06 19:43:48 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-11-06 19:43:48 -0500
commit50e456effc2cad22d6a61e08887816096c427658 (patch)
tree36109508292ec57f01529ab31699ed8837d3f0c8 /lib
parent3af6c283c504e7e85d9e127f64a5eb72abe583ee (diff)
Tree demo working (and other assorted regressions fixed)
Diffstat (limited to 'lib')
-rw-r--r--lib/top.ur4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/top.ur b/lib/top.ur
index 5d00282c..76fe73c1 100644
--- a/lib/top.ur
+++ b/lib/top.ur
@@ -230,12 +230,12 @@ fun eqNullable (tables ::: {{Type}}) (agg ::: {{Type}}) (exps ::: {Type})
(t ::: Type) (_ : sql_injectable (option t))
(e1 : sql_exp tables agg exps (option t))
(e2 : sql_exp tables agg exps (option t)) =
- (SQL ({[e1]} IS NULL AND {[e2]} IS NULL) OR {[e1]} = {[e2]})
+ (SQL ({e1} IS NULL AND {e2} IS NULL) OR {e1} = {e2})
fun eqNullable' (tables ::: {{Type}}) (agg ::: {{Type}}) (exps ::: {Type})
(t ::: Type) (inj : sql_injectable (option t))
(e1 : sql_exp tables agg exps (option t))
(e2 : option t) =
case e2 of
- None => (SQL {[e1]} IS NULL)
+ None => (SQL {e1} IS NULL)
| Some _ => sql_comparison sql_eq e1 (@sql_inject inj e2)