From 43b1f6e6499018228d64eef6815959898d72748f Mon Sep 17 00:00:00 2001 From: kishoramballi Date: Mon, 30 Jun 2008 14:05:49 +0000 Subject: [PATCH] input sql files for the test scripts --- test/cache/Gateway/join.sql | 1 + test/cache/Gateway/mysqlinputtest8.sql | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 test/cache/Gateway/join.sql create mode 100644 test/cache/Gateway/mysqlinputtest8.sql diff --git a/test/cache/Gateway/join.sql b/test/cache/Gateway/join.sql new file mode 100644 index 00000000..38374204 --- /dev/null +++ b/test/cache/Gateway/join.sql @@ -0,0 +1 @@ +select * from t1, t2 where t1.f1 = t2.f1; diff --git a/test/cache/Gateway/mysqlinputtest8.sql b/test/cache/Gateway/mysqlinputtest8.sql new file mode 100644 index 00000000..bf82356f --- /dev/null +++ b/test/cache/Gateway/mysqlinputtest8.sql @@ -0,0 +1,6 @@ +CREATE TABLE t2 (f1 SMALLINT primary key, f2 INT); +INSERT INTO t2 VALUES(1, 2011); +INSERT INTO t2 VALUES(2, 1978); +INSERT INTO t2 VALUES(3, 2008); +INSERT INTO t2 VALUES(4, 1973); +INSERT INTO t2 VALUES(5, 2005); -- 2.11.4.GIT