summaryrefslogtreecommitdiff
path: root/lib/ur/top.ur
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ur/top.ur')
-rw-r--r--lib/ur/top.ur6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/ur/top.ur b/lib/ur/top.ur
index 19259e92..83d5b6af 100644
--- a/lib/ur/top.ur
+++ b/lib/ur/top.ur
@@ -241,6 +241,12 @@ fun queryI [tables ::: {{Type}}] [exps ::: {Type}]
(fn fs _ => f fs)
()
+fun queryI1 [nm ::: Name] [fs ::: {Type}] (q : sql_query [] [nm = fs] [])
+ (f : $fs -> transaction unit) =
+ query q
+ (fn fs _ => f fs.nm)
+ ()
+
fun queryX [tables ::: {{Type}}] [exps ::: {Type}] [ctx ::: {Unit}] [inp ::: {Type}]
[tables ~ exps] (q : sql_query [] tables exps)
(f : $(exps ++ map (fn fields :: {Type} => $fields) tables)