Forgot to add the test data file for r1676
Andrew Rodland [Wed, 24 Feb 2010 21:30:35 +0000 (21:30 +0000)]
t/data/sqlite/named.sql [new file with mode: 0644]

diff --git a/t/data/sqlite/named.sql b/t/data/sqlite/named.sql
new file mode 100644 (file)
index 0000000..7e93878
--- /dev/null
@@ -0,0 +1,9 @@
+create table pet (
+  "pet_id" int,
+  "person_id" int
+    constraint fk_person_id references person(person_id),
+  "name" varchar(30),
+  "age" int,
+  constraint age_under_100 check ( age < 100 ),
+  constraint pk_pet primary key (pet_id, person_id)
+);