Skip to content

Commit 0068946

Browse files
committed
fix
1 parent 3939bef commit 0068946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/PgSqlIntegration/DatabasePopulateTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function testLoadEmptyDump(): void
4444

4545
/** @var PDO $pdo */
4646
$pdo = $this->getModule('Db')->_getDbh();
47-
$tableNames = $pdo->query('SHOW TABLES')->fetchAll(PDO::FETCH_COLUMN);
47+
$tableNames = $pdo->query('SELECT table_name FROM information_schema.tables WHERE table_schema=\'public\' AND table_type=\'BASE TABLE\'')->fetchAll(PDO::FETCH_COLUMN);
4848

4949
$this->assertSame([], $tableNames);
5050
}

0 commit comments

Comments
 (0)