Mercurial > urweb
view tests/sql_ops.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 | 5d494183ca89 |
children |
line wrap: on
line source
table t : { A : int, B : float } val q = (SELECT t.A + t.A AS X, t.B * t.B AS Y FROM t) fun main () : transaction page = xml <- queryX q (fn r => <xml>{[r.X]}, {[r.Y]}<br/></xml>); return <xml><body>{xml}</body></xml>