非互換
Fujitsu Enterprise Postgres 17では、SubPlanノードと出力パラメータに関するEXPLAINの表示を改善しました。
postgres=# EXPLAIN (COSTS OFF) SELECT * FROM document WHERE f_leak(dtitle);
QUERY PLAN
----------------------------------------------------
Seq Scan on document
Filter: ((dlevel <= $0) AND f_leak(dtitle))
InitPlan 1 (returns $0)
-> Index Scan using uaccount_pkey on uaccount
Index Cond: (pguser = CURRENT_USER)
(5 rows)
postgres=# EXPLAIN (COSTS OFF) SELECT * FROM document WHERE f_leak(dtitle);
QUERY PLAN
--------------------------------------------------------------
Seq Scan on document
Filter: ((dlevel <= (InitPlan 1).col1) AND f_leak(dtitle))
InitPlan 1
-> Index Scan using uaccount_pkey on uaccount
Index Cond: (pguser = CURRENT_USER)
(5 rows)
対処方法
ありません。