diff options
Diffstat (limited to 'ext/pdo_mysql/tests/show_tables.phpt')
-rw-r--r-- | ext/pdo_mysql/tests/show_tables.phpt | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/pdo_mysql/tests/show_tables.phpt b/ext/pdo_mysql/tests/show_tables.phpt deleted file mode 100644 index 97dfe686e7..0000000000 --- a/ext/pdo_mysql/tests/show_tables.phpt +++ /dev/null @@ -1,21 +0,0 @@ ---TEST-- -PDO MySQL SHOW TABLES ---SKIPIF-- -<?php -if (!extension_loaded('pdo') || !extension_loaded('pdo_mysql')) die('skip not loaded'); -require dirname(__FILE__) . '/config.inc'; -require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc'; -$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt'); -PDOTest::skip(); -?> ---FILE-- -<?php -require dirname(__FILE__) . '/../../../ext/pdo/tests/pdo_test.inc'; -$db = PDOTest::test_factory(dirname(__FILE__) . '/common.phpt'); - -print_r($db->query('SHOW TABLES')); ---EXPECT-- -PDOStatement Object -( - [queryString] => SHOW TABLES -) |