我已经设置了 Postgres 9.6 并检查了并行查询正在工作的随机整数的大表。但是,对另一个表的 XML 列的简单 XPath 查询始终是顺序的。在 Postgres 中,这两个 XPath 函数都被标记为并行安全的。我试图改变 XPath 成本,因此预期成本猛增,但并没有改变任何东西。我错过了什么?
示例表 DDL:
CREATE TABLE "test_table" ("xml" XML );
示例查询:
SELECT xpath('/a', "xml") FROM "test_table";
示例数据:
<a></a>
. 请注意,真实数据包含大小为 10-1000kB 的 XML。
> select pg_size_pretty(pg_total_relation_size('test_table'));
28 MB
> explain (analyze, verbose, buffers) select xpath('/a', "xml") from test_table;
Seq Scan on public.test_table (cost=0.00..64042.60 rows=2560 width=32) (actual time=1.420..4527.061 rows=2560 loops=1)
Output: xpath('/a'::text, xml, '{}'::text[])
Buffers: shared hit=10588
Planning time: 0.058 ms
Execution time: 4529.503 ms