非互換
FUJITSU Enterprise Postgres 13では、txid_で始まるトランザクションID関数名を変更します。
互換性のために、変更前の関数名も利用できますが、変更後の関数名を利用することを推薦します。
FUJITSU Enterprise Postgres 12以前 | FUJITSU Enterprise Postgres 13 |
---|---|
txid_current() | pg_current_xact_id() |
txid_current_if_assigned() | pg_current_xact_id_if_assigned() |
txid_current_snapshot() | pg_current_snapshot() |
txid_snapshot_xip() | pg_snapshot_xip() |
txid_snapshot_xmax() | pg_snapshot_xmax() |
txid_snapshot_xmin() | pg_snapshot_xmin() |
txid_visible_in_snapshot() | pg_visible_in_snapshot() |
txid_status() | pg_xact_status() |
対処方法
ありません。