Skip to content

Commit

Permalink
add cos file (fix build)
Browse files Browse the repository at this point in the history
  • Loading branch information
stechu committed Jul 23, 2017
1 parent 8589838 commit e0c7d28
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples/sqlrewrites/unionEmpty.cos
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
schema s1(x:int);

table a(s1); -- define table a using schema s1

query q1 -- define query q1 on tables a and b
`select * from a x UNION ALL
select * from a x where false`;

query q2 -- define query q2 likewise
`select * from a x`;

verify q1 q2; -- does q1 equal to q2?

0 comments on commit e0c7d28

Please sign in to comment.