summaryrefslogtreecommitdiff
path: root/lib/top.urs
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-10-30 15:16:37 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-10-30 15:16:37 -0400
commitd710cc7a5aa246763af96dfca57ec8a7a5a6fd37 (patch)
treefe9ae1798baecaadf006b54d792997b0fb2db54c /lib/top.urs
parent5400696e2584c331c6fa6c9627a6c60d08327480 (diff)
Time MIN/MAX
Diffstat (limited to 'lib/top.urs')
-rw-r--r--lib/top.urs10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/top.urs b/lib/top.urs
index 22cebb16..6e9dda4e 100644
--- a/lib/top.urs
+++ b/lib/top.urs
@@ -116,3 +116,13 @@ val oneOrNoRows : tables ::: {{Type}} -> exps ::: {Type}
[[nm] ~ acc] =>
[nm = $fields] ++ acc)
[] tables))
+
+val oneRow : tables ::: {{Type}} -> exps ::: {Type}
+ -> sql_query tables exps
+ -> fn [tables ~ exps] =>
+ transaction
+ $(exps
+ ++ fold (fn nm (fields :: {Type}) acc
+ [[nm] ~ acc] =>
+ [nm = $fields] ++ acc)
+ [] tables)