X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F48xml-to-sqlite.t;h=21e8ad355adc4b5653a961c3592e506c1b88a071;hb=HEAD;hp=b7b6e32554d8b299e13abfb455d40b43953ace48;hpb=03b0fa258c8580135c282b0282b5c7dcb0865c14;p=dbsrgits%2FSQL-Translator.git diff --git a/t/48xml-to-sqlite.t b/t/48xml-to-sqlite.t index b7b6e32..21e8ad3 100644 --- a/t/48xml-to-sqlite.t +++ b/t/48xml-to-sqlite.t @@ -40,7 +40,7 @@ BEGIN TRANSACTION; DROP TABLE "Basic"; CREATE TABLE "Basic" ( - "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + "id" INTEGER PRIMARY KEY NOT NULL, "title" varchar(100) NOT NULL DEFAULT 'hello', "description" text DEFAULT '', "email" varchar(500), @@ -62,7 +62,7 @@ CREATE UNIQUE INDEX "very_long_index_name_on_title_field_which_should_be_truncat DROP TABLE "Another"; CREATE TABLE "Another" ( - "id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, + "id" INTEGER PRIMARY KEY NOT NULL, "num" numeric(10,2) ); @@ -98,7 +98,7 @@ eq_or_diff(\@sql, 'BEGIN TRANSACTION', q, q, q, q, q, @@ -130,3 +130,5 @@ eq_or_diff(\@sql, 'COMMIT', ], 'SQLite translate in list context matches'); + +