annotate tests/user.ur @ 2266:afd12c75e0d6

Do SQL and pure caching in the same pass.
author Ziv Scully <ziv@mit.edu>
date Wed, 14 Oct 2015 15:45:04 -0400
parents d1dbb9a3c804
children
rev   line source
adamc@986 1 table user : {A : int}
adamc@986 2
adamc@986 3 fun main () =
adamc@986 4 r <- oneRow (SELECT COUNT( * ) AS N FROM user);
adamc@986 5 return <xml>{[r.N]}</xml>