local_dist_join_mixed

mehmet/pg17-multi-1
Mehmet Yilmaz 2024-11-08 11:14:28 +00:00
parent cb9bf6aa22
commit 6d7b6c84c8
3 changed files with 1627 additions and 0 deletions

View File

@ -1,3 +1,7 @@
-- Two alternative test outputs:
-- local_dist_join_mixed.out for PG16 and before
-- local_dist_join_mixed_0.out for PG17
-- PostgreSQL 17 optimizes correlated subqueries by pushing down filter conditions into subplans for more efficient query execution.
CREATE SCHEMA local_dist_join_mixed; CREATE SCHEMA local_dist_join_mixed;
SET search_path TO local_dist_join_mixed; SET search_path TO local_dist_join_mixed;
CREATE TABLE distributed (key int, id bigserial PRIMARY KEY, CREATE TABLE distributed (key int, id bigserial PRIMARY KEY,

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,7 @@
-- Two alternative test outputs:
-- local_dist_join_mixed.out for PG16 and before
-- local_dist_join_mixed_0.out for PG17
-- PostgreSQL 17 optimizes correlated subqueries by pushing down filter conditions into subplans for more efficient query execution.
CREATE SCHEMA local_dist_join_mixed; CREATE SCHEMA local_dist_join_mixed;
SET search_path TO local_dist_join_mixed; SET search_path TO local_dist_join_mixed;