Hi,
Working with version RC2 freshly checked out : here is the code for the liquibase.sqlgenerator.core.AddDefaultValueGeneratorInformix.supports(AddDefaultValueStatement, Database) implementation :
-
@Override
public boolean supports(AddDefaultValueStatement statement, Database database) {
return database instanceof SybaseDatabase;
}
As you can see, the comparison is made with the Sybase Database implementation and not the Informix one, is it normal ?
Regards