Mercurial > urweb
view tests/sql_if.ur @ 1591:20f898c29525
Tweaks to choices of source positions to use in error messages, including for subSgn
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 05 Nov 2011 13:12:07 -0400 |
parents | 34364e383bed |
children |
line wrap: on
line source
table t : { A : int, B : int } fun main () = x <- queryX (SELECT * FROM t WHERE IF t.A = 6 THEN t.B < 2 ELSE t.B > 5) (fn r => <xml><li>{[r.T.A]}, {[r.T.B]}</li></xml>); return <xml><body>{x}</body></xml>