Skip to content

Commit

Permalink
pg_join debug
Browse files Browse the repository at this point in the history
  • Loading branch information
svenklemm committed Sep 15, 2023
1 parent 98507d4 commit 0264c6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/sql/include/join_query.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2229,7 +2229,7 @@ set work_mem = '64kB';
select count(*) from join_foo
left join (select b1.id, b1.t from join_bar b1 join join_bar b2 using (id)) ss
on join_foo.id < ss.id + 1 and join_foo.id > ss.id - 1;
select final > 1 as multibatch
select final > 1 as multibatch1
from hash_join_batches(
$$
select count(*) from join_foo
Expand All @@ -2253,7 +2253,7 @@ set work_mem = '4MB';
select count(*) from join_foo
left join (select b1.id, b1.t from join_bar b1 join join_bar b2 using (id)) ss
on join_foo.id < ss.id + 1 and join_foo.id > ss.id - 1;
select final > 1 as multibatch
select final > 1 as multibatch2
from hash_join_batches(
$$
select count(*) from join_foo
Expand All @@ -2280,7 +2280,7 @@ set work_mem = '64kB';
select count(*) from join_foo
left join (select b1.id, b1.t from join_bar b1 join join_bar b2 using (id)) ss
on join_foo.id < ss.id + 1 and join_foo.id > ss.id - 1;
select final > 1 as multibatch
select final > 1 as multibatch3
from hash_join_batches(
$$
select count(*) from join_foo
Expand All @@ -2307,7 +2307,7 @@ set work_mem = '4MB';
select count(*) from join_foo
left join (select b1.id, b1.t from join_bar b1 join join_bar b2 using (id)) ss
on join_foo.id < ss.id + 1 and join_foo.id > ss.id - 1;
select final > 1 as multibatch
select final > 1 as multibatch4
from hash_join_batches(
$$
select count(*) from join_foo
Expand Down

0 comments on commit 0264c6f

Please sign in to comment.