comparison tests/where.lac @ 209:1487c712eb12

Stub WHERE support
author Adam Chlipala <adamc@hcoop.net>
date Sat, 16 Aug 2008 12:15:38 -0400
parents
children f4033abd6ab1
comparison
equal deleted inserted replaced
208:63a2f2322c1f 209:1487c712eb12
1 table t1 : {A : int, B : string, C : float}
2 table t2 : {A : float, D : int}
3
4 val q1 = (SELECT * FROM t1)
5 val q2 = (SELECT * FROM t1 WHERE TRUE)
6 val q3 = (SELECT * FROM t1 WHERE FALSE)