annotate tests/coalesce.ur @ 2269:f7bc7c11a656

Make SQL caches use more of the pure caching machinery, but it's brittle.
author Ziv Scully <ziv@mit.edu>
date Thu, 15 Oct 2015 00:52:04 -0400
parents e44be6ece475
children
rev   line source
adam@1602 1 table t : { A : option int }
adam@1602 2
adam@1602 3 fun main () : transaction page =
adam@1602 4 queryX (SELECT COALESCE(t.A, 13)
adam@1602 5 FROM t)
adam@1602 6 (fn r => <xml>{[r.1]},</xml>)