local_table_join

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

View File

@ -1,3 +1,7 @@
-- Two alternative test outputs:
-- local_table_join.out for PG16 and before
-- local_table_join_0.out for PG17
-- PostgreSQL 17 optimizes correlated subqueries by pushing down filter conditions into subplans for more efficient query execution.
CREATE SCHEMA local_table_join;
SET search_path TO local_table_join;
CREATE TABLE postgres_table (key int, value text, value_2 jsonb);

File diff suppressed because it is too large Load Diff

View File

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