1--TEST-- 2PDO MySQL SHOW TABLES 3--EXTENSIONS-- 4pdo_mysql 5--SKIPIF-- 6<?php 7require_once __DIR__ . '/inc/mysql_pdo_test.inc'; 8MySQLPDOTest::skip(); 9?> 10--FILE-- 11<?php 12require_once __DIR__ . '/inc/mysql_pdo_test.inc'; 13$db = MySQLPDOTest::factory(); 14 15print_r($db->query('SHOW TABLES')); 16?> 17--EXPECT-- 18PDOStatement Object 19( 20 [queryString] => SHOW TABLES 21) 22