From: Andrew Rodland Date: Wed, 24 Feb 2010 21:30:35 +0000 (+0000) Subject: Forgot to add the test data file for r1676 X-Git-Tag: v0.11008~55 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=eaaa8f8a9d18e0b6d390091399cbbe1feaf0f30c;p=dbsrgits%2FSQL-Translator.git Forgot to add the test data file for r1676 --- diff --git a/t/data/sqlite/named.sql b/t/data/sqlite/named.sql new file mode 100644 index 0000000..7e93878 --- /dev/null +++ b/t/data/sqlite/named.sql @@ -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) +);