ページの先頭行へ戻る
Enterprise Postgres 17 リリース情報

2.2.89 EXPLAIN (BUFFERS)の表示の変更

非互換

EXPLAIN (BUFFERS)を実行した場合の表示を変更し、“shared/local”と表示されていたところを“shared”に変更します。

Fujitsu Enterprise Postgres 15以前の場合
postgres=# set track_io_timing = on;
SET
postgres=# explain (buffers) select * from pg_proc;
                          QUERY PLAN
---------------------------------------------------------------
 Seq Scan on pg_proc  (cost=0.00..132.47 rows=3347 width=2003)
 Planning:
   Buffers: shared hit=93 read=7
   I/O Timings: shared/local read=1.288
(4 row)
Fujitsu Enterprise Postgres 16の場合
postgres=# set track_io_timing = on;
SET
postgres=# explain (buffers) select * from pg_proc;
                          QUERY PLAN
---------------------------------------------------------------
 Seq Scan on pg_proc  (cost=0.00..136.15 rows=3415 width=1983)
 Planning:
   Buffers: shared hit=142 read=18
   I/O Timings: shared read=1.125
(4 row)

対処方法

ありません。