Fixed up tests to accommodate new DB2 producer changes and sqlite tests to not test...
[dbsrgits/SQL-Translator.git] / t / 43xml-to-db2.t
index 8e4b7ca..8a430b6 100644 (file)
@@ -36,7 +36,7 @@ is($sql, << "SQL");
 DROP TABLE Basic;
 
 CREATE TABLE Basic (
-id INTEGER GENERATED BY DEFAULT AS IDENTITY NOT NULL,
+id INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1) NOT NULL,
 title VARCHAR(100) NOT NULL DEFAULT 'hello',
 description VARCHAR(0) DEFAULT '',
 email VARCHAR(255),