aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/ur/top.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-12-10 12:06:03 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-12-10 12:06:03 -0500
commit14163f6e6e160694eff3d409ca3cf0b8b76c4a3a (patch)
tree43cb064726f954a8e07bf4ce22fd55ece12fc24c /lib/ur/top.urs
parent4a4982421afb15dcfea3561a5763adf5ba22409e (diff)
Make oneRowE1 more general
Diffstat (limited to 'lib/ur/top.urs')
-rw-r--r--lib/ur/top.urs6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ur/top.urs b/lib/ur/top.urs
index 6470d7d7..2b6248fc 100644
--- a/lib/ur/top.urs
+++ b/lib/ur/top.urs
@@ -163,9 +163,9 @@ val oneRow : tables ::: {{Type}} -> exps ::: {Type}
$(exps
++ map (fn fields :: {Type} => $fields) tables)
-val oneRowE1 : tab ::: Name -> nm ::: Name -> t ::: Type
- -> [[tab] ~ [nm]] =>
- sql_query [tab = []] [nm = t]
+val oneRowE1 : tabs ::: {Unit} -> nm ::: Name -> t ::: Type
+ -> [tabs ~ [nm]] =>
+ sql_query (mapU [] tabs) [nm = t]
-> transaction t
val eqNullable : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}