Skip to content

Commit

Permalink
test: add end-to-end test
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Taylor <[email protected]>
  • Loading branch information
systay committed Oct 16, 2024
1 parent 3d73581 commit 1a8c095
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,7 @@ from (select 1 as one

select u.id, u.t1_id, t.num_segments
from (select id, count(*) as num_segments from t1 group by 1 order by 2 desc limit 20) t
join t2 u on u.id = t.id;
join t2 u on u.id = t.id;

select name
from (select name from t1 group by name having count(t1.id > 1)) t1;

0 comments on commit 1a8c095

Please sign in to comment.