Mercurial > urweb
view tests/coalesce.ur @ 1924:b44138e6a3bf
Add activeHead tag.
activeHead is similar to active but produces xhead instead of xbody
author | Sergey Mironov <grrwlf@gmail.com> |
---|---|
date | Fri, 06 Dec 2013 13:59:39 +0400 |
parents | e44be6ece475 |
children |
line wrap: on
line source
table t : { A : option int } fun main () : transaction page = queryX (SELECT COALESCE(t.A, 13) FROM t) (fn r => <xml>{[r.1]},</xml>)