autoIncrement not being ignored (sometimes)

Hi all, seem to have a weird problem here. Using 1.9.5 against Oracle 11gR2 and liquibase is not ignoring the autoIncrement setting on some occasion.
My main table creations worked, created about 100 tables with autoIncrement=true and it worked fine. The tables created with just plain number fields. Trying to run updates after that though and it keeps trying to add autoIncrement stuff back in when adding columns.
Changelog:

           
               
           

Generated SQL:
ALTER TABLE Configuration ADD id NUMBER(19,0) PRIMARY KEY AUTO_INCREMENT NOT NULL

Obviously the auto_increment should not be there for Oracle, and it looks like when you create tables it works, but not when adding columns…

Any thoughts? Should a new issue be opened?

Yes, it should be ignored for addColumn calls as well as create table calls. 

I put in a fix for the 2.0 release, so you don’t need to create a new issue for it.

Nathan