Every time I restore the database to the development environment, these two operators will be missing. it needs to be added.
CREATE OPERATOR adempiere.+ (
PROCEDURE = adempiere.adddays,
LEFTARG = timestamp with time zone,
RIGHTARG = numeric,
COMMUTATOR = OPERATOR(adempiere.+)
);
CREATE OPERATOR adempiere.- (
PROCEDURE = adempiere.subtractdays,
LEFTARG = timestamp with time zone,
RIGHTARG = numeric,
COMMUTATOR = OPERATOR(adempiere.-)
);English Version
Every time I restore the database to the development environment, these two operators will be missing. They need to be added.
CREATE OPERATOR adempiere.+ (
PROCEDURE = adempiere.adddays,
LEFTARG = timestamp with time zone,
RIGHTARG = numeric,
COMMUTATOR = OPERATOR(adempiere.+)
);
CREATE OPERATOR adempiere.- (
PROCEDURE = adempiere.subtractdays,
LEFTARG = timestamp with time zone,
RIGHTARG = numeric,
COMMUTATOR = OPERATOR(adempiere.-)
);日本語版
データベースを開発環境にリストアするたびに、以下の2つのオペレーターが欠落します。手動で追加する必要があります。
CREATE OPERATOR adempiere.+ (
PROCEDURE = adempiere.adddays,
LEFTARG = timestamp with time zone,
RIGHTARG = numeric,
COMMUTATOR = OPERATOR(adempiere.+)
);
CREATE OPERATOR adempiere.- (
PROCEDURE = adempiere.subtractdays,
LEFTARG = timestamp with time zone,
RIGHTARG = numeric,
COMMUTATOR = OPERATOR(adempiere.-)
);