非互換
Fujitsu Enterprise Postgres 16 SP1では、別セッションの一時テーブルに対して、ALTER TABLEによる変更を防止します。
session 1
postgres=# CREATE TEMP TABLE mytemptable(f1 int); CREATE TABLE
session 2
postgres=# ALTER TABLE pg_temp_3.mytemptable add column f2 int; ALTER TABLE
session 1
postgres=# CREATE TEMP TABLE mytemptable(f1 int); CREATE TABLE
session 2
postgres=# ALTER TABLE pg_temp_3.mytemptable add column f2 int; ERROR: cannot alter temporary tables of other sessions
対処方法
ありません。