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

2.2.186 ポストフィックスの演算子をサポートしないように変更

非互換

FUJITSU Enterprise Postgres 14では、ポストフィックスの演算子をサポートしないように変更します。

FUJITSU Enterprise Postgres 13 SP1以前の場合

ポストフィックスの演算子が作成できます。

[例]

=# CREATE OPERATOR #@# (
(#    leftarg = int8,
(#    leftarg = int8,-- right unary
(#    procedure = factorial
(# );
CREATE OPERATOR
=# SELECT 4#@#;
 ?column?
----------
       24
(1 row)
FUJITSU Enterprise Postgres 14の場合

ポストフィックスの演算子が作成できません。

[例]

=# create operator #@#(
(# leftarg = int8,
(# leftarg = int8,
(# procedure = factorial
(# );
ERROR:  operator right argument type must be specified
DETAIL:  Postfix operators are not supported.

対処方法

ありません。