summaryrefslogtreecommitdiff
path: root/tests/pquery.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 12:58:33 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-07 12:58:33 -0400
commit4a627a550cb54c18cb16cc0ad852e6a0bbc59c31 (patch)
treec14ae0c932a86fb435119bbbf0267b64ccf0e9e3 /tests/pquery.ur
parent09b9ebf63c7a41dc40a702832b9d103e85dcf297 (diff)
Reading bools from SQL
Diffstat (limited to 'tests/pquery.ur')
-rw-r--r--tests/pquery.ur5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/pquery.ur b/tests/pquery.ur
index 1086aaee..ea53f7c9 100644
--- a/tests/pquery.ur
+++ b/tests/pquery.ur
@@ -1,13 +1,14 @@
-table t1 : {A : int, B : string, C : float}
+table t1 : {A : int, B : string, C : float, D : bool}
fun lookup (inp : {B : string}) =
s <- query (SELECT * FROM t1 WHERE t1.B = {inp.B})
(fn fs _ => return fs.T1)
- {A = 0, B = "Couldn't find it!", C = 0.0};
+ {A = 0, B = "Couldn't find it!", C = 0.0, D = False};
return <html><body>
A: {cdata (show _ s.A)}<br/>
B: {cdata (show _ s.B)}<br/>
C: {cdata (show _ s.C)}<br/>
+ D: {cdata (show _ s.D)}<br/>
</body></html>
fun main () : transaction page = return <html><body>