summaryrefslogtreecommitdiff
path: root/lib/ur/top.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-10-22 11:15:37 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-10-22 11:15:37 -0400
commitcf42469778104a3079191c6e871954ffb3b5c957 (patch)
treed366eb0c432244981b3d0a9eaae15e7b0273125e /lib/ur/top.ur
parent3d97fb2839259bada8b730207d4b9de58659cfeb (diff)
Checking deadline; sign-in
Diffstat (limited to 'lib/ur/top.ur')
-rw-r--r--lib/ur/top.ur5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ur/top.ur b/lib/ur/top.ur
index 6a0f8751..10b3f711 100644
--- a/lib/ur/top.ur
+++ b/lib/ur/top.ur
@@ -246,6 +246,11 @@ fun oneOrNoRows1 [nm ::: Name] [fs ::: {Type}] (q : sql_query [nm = fs] []) =
(fn fs _ => return (Some fs.nm))
None
+fun oneOrNoRowsE1 [tab ::: Name] [nm ::: Name] [t ::: Type] [[tab] ~ [nm]] (q : sql_query [tab = []] [nm = t]) =
+ query q
+ (fn fs _ => return (Some fs.nm))
+ None
+
fun oneRow [tables ::: {{Type}}] [exps ::: {Type}]
[tables ~ exps] (q : sql_query tables exps) =
o <- oneOrNoRows q;