view tests/selclause.ur @ 2237:e79ef5792c8b

Fix bug in redundancy checking and use finer formula for UPDATE statements.
author Ziv Scully <ziv@mit.edu>
date Sun, 05 Jul 2015 23:57:28 -0700
parents 5c1f10cdac63
children
line wrap: on
line source
table t : { A : int, B : string, C : float }
table u : { D : int, E : string, F : float }

val q : transaction (list {T : { A : int, B : string, C : float}, U : { D : int }, X : string }) =
    queryL (SELECT t.*, u.D, 'hi' AS X
            FROM t, u)