Skip to content

Commit fc8181e

Browse files
committed
Add pg_use_ctid_scan setting, disable parallel ctid scans by default on older postgres versions
1 parent b7a30c2 commit fc8181e

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

src/postgres_extension.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ static void LoadInternal(DatabaseInstance &db) {
9292

9393
config.AddExtensionOption("pg_use_binary_copy", "Whether or not to use BINARY copy to read data",
9494
LogicalType::BOOLEAN, Value::BOOLEAN(true));
95+
config.AddExtensionOption("pg_use_ctid_scan", "Whether or not to parallelize scanning using table ctids",
96+
LogicalType::BOOLEAN, Value::BOOLEAN(true));
9597
config.AddExtensionOption("pg_pages_per_task", "The amount of pages per task", LogicalType::UBIGINT,
9698
Value::UBIGINT(PostgresBindData::DEFAULT_PAGES_PER_TASK));
9799
config.AddExtensionOption("pg_connection_limit", "The maximum amount of concurrent Postgres connections",

src/postgres_scanner.cpp

+13
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,19 @@ void PostgresScanFunction::PrepareBind(PostgresVersion version, ClientContext &c
106106
bind_data.pages_per_task = PostgresBindData::DEFAULT_PAGES_PER_TASK;
107107
}
108108
}
109+
bool use_ctid_scan = true;
110+
Value pg_use_ctid_scan;
111+
if (context.TryGetCurrentSetting("pg_use_ctid_scan", pg_use_ctid_scan)) {
112+
use_ctid_scan = BooleanValue::Get(pg_use_ctid_scan);
113+
}
114+
if (version.major_v < 14) {
115+
// Disable parallel CTID scan on older Postgres versions since it is not efficient
116+
// see https://github.com/duckdb/postgres_scanner/issues/186
117+
use_ctid_scan = false;
118+
}
119+
if (!use_ctid_scan) {
120+
approx_num_pages = 0;
121+
}
109122
bind_data.SetTablePages(approx_num_pages);
110123
bind_data.version = version;
111124
}

test/sql/storage/attach_verify_big_table.test_slow

+8
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,11 @@ SELECT COUNT(*), SUM(generate_series) FROM s1.big_generated_table
2020
1000000 499999500000
2121

2222
endloop
23+
24+
statement ok
25+
SET pg_use_ctid_scan=false;
26+
27+
query II
28+
SELECT COUNT(*), SUM(generate_series) FROM s1.big_generated_table
29+
----
30+
1000000 499999500000

0 commit comments

Comments
 (0)