Mercurial > urweb
annotate tests/nomangle.ur @ 2262:34ad83d9b729
Fix recording bugs to do with nesting and buffer reallocation. Stop MonoFooify printing spurious errors.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Wed, 07 Oct 2015 08:58:08 -0400 |
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> |