非互換
FUJITSU Enterprise Postgres 13では、EXPLAINコマンドのBUFFERオプションを指定する場合、EXPLAIN文にプラン作成時のバッファ使用量が追加されます。
プラン作成時のバッファ使用量の情報がありません。
[例]
=# explain (analyze, buffers, format yaml) select * from int8_tbl i8;
QUERY PLAN
--------------------------------
- Plan: +
Node Type: "Seq Scan" +
…
Planning Time: 0.052 +
Triggers: +
Execution Time: 0.020
(1 row)プラン作成時のバッファ使用量の情報が追加されます。
[例]
=# explain (analyze, buffers, format yaml) select * from int8_tbl i8;
QUERY PLAN
--------------------------------
- Plan: +
Node Type: "Seq Scan" +
…
Planning: +
Shared Hit Blocks: 13 +
…
Temp Written Blocks: 0 +
Planning Time: 0.148 +
Triggers: +
Execution Time: 0.013
(1 row)対処方法
ありません。