annotate tests/sqlprecision.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 2f33d9a51765
children
rev   line source
adam@1920 1 table t : { N : float }
adam@1920 2
adam@1920 3 fun insert r =
adam@1920 4 dml (INSERT INTO t (N) VALUES ({[readError r.N]}));
adam@1920 5 return <xml/>
adam@1920 6
adam@1920 7 fun main () = return <xml><body>
adam@1920 8 <form>
adam@1920 9 <textbox{#N}/>
adam@1920 10 <submit action={insert}/>
adam@1920 11 </form>
adam@1920 12 </body></xml>