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

2.2.48 xid、xid8、cid型に対する不正な入力の検出

非互換

xid、xid8、cid型に対する不正な入力を検出します。

Fujitsu Enterprise Postgres 15以前の場合
postgres=# select ''::xid;
 xid
-----
   0
(1 row)
postgres=# select ''::cid;
 cid
-----
   0
(1 row)
postgres=# select ''::xid8;
 xid8
-----
   0
(1 row)
Fujitsu Enterprise Postgres 16の場合
postgres=# select ''::xid;
ERROR:  invalid input syntax for type xid: ""
LINE 1: select ''::xid;
postgres=# select ''::cid;
ERROR:  invalid input syntax for type cid: ""
LINE 1: select ''::cid;
postgres=# select ''::xid8;
ERROR:  invalid input syntax for type xid8: ""
LINE 1: select ''::xid8;

対処方法

ありません。