BF2022161 Process MRPUpdate failing

- nextidfunc() missing on some postgresql systems
- remove old placeholders
This commit is contained in:
tspc 2008-07-22 00:47:30 +00:00
parent f5984501b4
commit ccf2927a3a
4 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,2 @@
-- placeholder
-- migration script just for postgresql

View File

@ -0,0 +1,7 @@
-- missing function nextIDfunc
CREATE OR REPLACE FUNCTION nextIDfunc(AD_Sequence_ID INTEGER, System VARCHAR)
RETURNS INTEGER
AS 'org.compiere.sqlj.Adempiere.nextIDfunc(int,java.lang.String)'
LANGUAGE java VOLATILE;
ALTER FUNCTION nextIDfunc(AD_Sequence_ID INTEGER, System VARCHAR) OWNER TO adempiere;