
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
13/Jul/06 01:21 PM
|
|
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; |
Show » |
| There are no subversion log entries for this issue yet.
|
|