Applied patch sent in by Daniel Westermann-Clark on Oct 11 2006.
[dbsrgits/SQL-Translator.git] / t / 48xml-to-sqlite.t
index fd05ad4..53f37db 100644 (file)
@@ -38,9 +38,6 @@ is($sql, << "SQL");
 BEGIN TRANSACTION;
 
 
---
--- Table: Basic
---
 DROP TABLE Basic;
 CREATE TABLE Basic (
   id INTEGER PRIMARY KEY NOT NULL,
@@ -51,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