Informix AddDefaultValueGenerator support

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

No that doesn’t seem right.  Probably refactored incorrectly from the 1.9 branch.  I made the change in trunk, thanks for pointing it out.

Nathan

Thank you for this very fast action !

Pascal