Fixed up tests to accommodate new DB2 producer changes and sqlite tests to not test...
[dbsrgits/SQL-Translator.git] / t / 44-xml-to-db2-array.t
index d254af9..9285ded 100644 (file)
@@ -34,7 +34,7 @@ my @sql = $sqlt->translate(
 
 my $want = [ 'DROP TABLE Basic;',
 q|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),