annotate tests/whiteout.ur @ 2288:98f96a976ede

Finish locking, but it's not yet tested rigorously.
author Ziv Scully <ziv@mit.edu>
date Fri, 13 Nov 2015 11:03:09 -0500
parents f0224c7f12bb
children
rev   line source
adamc@684 1 table t : { Chan : option (channel unit) }
adamc@684 2
adamc@684 3 fun main () : transaction page =
adamc@684 4 ch <- channel;
adamc@684 5 dml (INSERT INTO t (Chan) VALUES ({[Some ch]}));
adamc@684 6 return <xml><body>Did it.</body></xml>