summaryrefslogtreecommitdiffstats
path: root/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql
diff options
context:
space:
mode:
Diffstat (limited to 'tests/httpd-php-mysql-sanity-test/php_mysql_test.sql')
-rw-r--r--tests/httpd-php-mysql-sanity-test/php_mysql_test.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql b/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql
new file mode 100644
index 0000000..ad931ac
--- /dev/null
+++ b/tests/httpd-php-mysql-sanity-test/php_mysql_test.sql
@@ -0,0 +1,6 @@
+
+CREATE DATABASE php_mysql_test;
+USE php_mysql_test;
+
+CREATE TABLE foobar (name VARCHAR(10), value INTEGER);
+INSERT INTO foobar VALUES("fish", 42);