You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* define schema s1,
here s1 can contain any number of attributes,
but it has to at least contain integer attributes
x and y */
schema s1(x:int, y:int, ??);
table a(s1); -- table a of schema s1
query q1 -- query 1 select x.x as ax from a x where 1=1;
query q2 -- query 2 select x.x as ax from a x where 0=0;
verify q1 q2; -- verify the equivalence
The text was updated successfully, but these errors were encountered:
/* define schema s1,
here s1 can contain any number of attributes,
but it has to at least contain integer attributes
x and y */
schema s1(x:int, y:int, ??);
table a(s1); -- table a of schema s1
query q1 -- query 1
select x.x as ax from a x where 1=1
;query q2 -- query 2
select x.x as ax from a x where 0=0
;verify q1 q2; -- verify the equivalence
The text was updated successfully, but these errors were encountered: