Mercurial > urweb
view tests/fitem.ur @ 1431:4a6f84092399
Represent 'unit' as C 'int'; change pattern match compilation to avoid 'goto'; change Postgres prepared statement compilation to make life easier for the GCC escape analysis; all this in support of better tail call optimization
author | Adam Chlipala <adam@chlipala.net> |
---|---|
date | Thu, 10 Mar 2011 18:51:15 -0500 |
parents | e8d68fd8ed4b |
children |
line wrap: on
line source
table t : { A : int, B : string } table u : { A : int, C : float } val q : sql_query [] [T = [A = int, B = string], U = [C = option float]] [] = (SELECT t.A, t.B, u.C FROM {{sql_left_join (FROM t) (FROM u) (WHERE TRUE)}})