1--TEST-- 2PDO MySQL SHOW TABLES 3--EXTENSIONS-- 4pdo 5pdo_mysql 6--SKIPIF-- 7<?php 8require __DIR__ . '/config.inc'; 9require __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc'; 10PDOTest::skip(); 11?> 12--FILE-- 13<?php 14require __DIR__ . '/../../../ext/pdo/tests/pdo_test.inc'; 15$db = PDOTest::test_factory(__DIR__ . '/common.phpt'); 16 17print_r($db->query('SHOW TABLES')); 18?> 19--EXPECT-- 20PDOStatement Object 21( 22 [queryString] => SHOW TABLES 23) 24