Applied patch sent in by Daniel Westermann-Clark on Oct 11 2006.
[dbsrgits/SQL-Translator.git] / t / 48xml-to-sqlite.t
index 6ed2a22..53f37db 100644 (file)
@@ -48,11 +48,18 @@ CREATE TABLE Basic (
   explicitemptystring varchar DEFAULT '',
   -- Hello emptytagdef
   emptytagdef varchar DEFAULT '',
+  another_id int(10) DEFAULT '2',
   timest timestamp
 );
 
 CREATE INDEX titleindex_Basic on Basic (title);
 CREATE UNIQUE INDEX emailuniqueindex_Basic on Basic (email);
 
+DROP TABLE Another;
+CREATE TABLE Another (
+  id INTEGER PRIMARY KEY NOT NULL
+);
+
+
 COMMIT;
 SQL