Skip to:
A column named 'number' (reserved word in Oracle) is not escaped by Liquibase. This causes ORA-00904: invalid identifier.Generated SQL:
CREATE TABLE document (id NUMBER(38,0) NOT NULL, number INTEGER NOT NULL, CONSTRAINT PK_DOCUMENT PRIMARY KEY (id))
I belive that this changeset is reason for not escaping.
grails database-migration plugin
I'll add the derby reserved words back in. It is configurable per Database class, but needs better defaults
Could/Should be made configurable?
Otherwise, reserved words failing for Derby: "user", "group"
(version: 2.0.3)
added "number" back as reserved word
A column named 'number' (reserved word in Oracle) is not escaped by Liquibase. This causes ORA-00904: invalid identifier.
Generated SQL:
CREATE TABLE document (id NUMBER(38,0) NOT NULL, number INTEGER NOT NULL, CONSTRAINT PK_DOCUMENT PRIMARY KEY (id))
I belive that this changeset is reason for not escaping.