Table with column:
CREATE TABLE "MYTABLE" (
"OTHER" LONG
)
after
-sh-4.1$./liquibase ... --generateChangeLog
the column converted to wrong type in databaseChangeLog.xml :
<column name="OTHER" type="LONG(0)"/>
Oracle does not support "LONG(0)" declaration, just LONG.
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production;
Red Hat Enterprise Linux Server release 6.3 (Santiago);
Fixed