The SQL DdlUtils generates for modifying a column in Derby 10.1 seems incorrect. specifically it cxreates statements like
ALTER TABLE "coltype"
MODIFY "COL_FLOAT" DOUBLE PRECISION;
According to the documentation the correct syntax would have to be
ALTER TABLE "coltype"
ALTER "COL_FLOAT" SET DATA TYPE DOUBLE PRECISION;
Description
The SQL DdlUtils generates for modifying a column in Derby 10.1 seems incorrect. specifically it cxreates statements like
ALTER TABLE "coltype"
MODIFY "COL_FLOAT" DOUBLE PRECISION;
According to the documentation the correct syntax would have to be
ALTER TABLE "coltype"
ALTER "COL_FLOAT" SET DATA TYPE DOUBLE PRECISION;