Mercurial > urweb
view tests/sql_if.ur @ 1780:85a87f155e7b
Flush elaboration cache when switching between .urp files
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Sat, 23 Jun 2012 10:11:33 -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>