annotate tests/nomangle.ur @ 2282:19b233bb3176

Make cache flushes safe for transactions (not sure about LRU bump on read).
author Ziv Scully <ziv@mit.edu>
date Thu, 12 Nov 2015 09:47:20 -0500
parents f55b0e45422f
children
rev   line source
adam@2144 1 table foo : { Bar : int, Baz : string }
adam@2144 2 PRIMARY KEY Baz
adam@2144 3
adam@2144 4 fun main () : transaction page =
adam@2144 5 rs <- queryX1 (SELECT foo.Bar FROM foo WHERE foo.Baz = 'Hi')
adam@2144 6 (fn r => <xml>{[r.Bar]}</xml>);
adam@2144 7 return <xml><body>{rs}</body></xml>