summaryrefslogtreecommitdiff
path: root/lib/ur
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ur')
-rw-r--r--lib/ur/top.ur6
-rw-r--r--lib/ur/top.urs5
2 files changed, 11 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)
diff --git a/lib/ur/top.urs b/lib/ur/top.urs
index 74b04ed1..d86ae553 100644
--- a/lib/ur/top.urs
+++ b/lib/ur/top.urs
@@ -152,6 +152,11 @@ val queryI : tables ::: {{Type}} -> exps ::: {Type}
-> transaction unit)
-> transaction unit
+val queryI1 : nm ::: Name -> fs ::: {Type}
+ -> sql_query [] [nm = fs] []
+ -> ($fs -> transaction unit)
+ -> transaction unit
+
val queryX : tables ::: {{Type}} -> exps ::: {Type} -> ctx ::: {Unit} -> inp ::: {Type}
-> [tables ~ exps] =>
sql_query [] tables exps