Skip to content

Commit ddbc8c9

Browse files
committed
x
1 parent 91d896b commit ddbc8c9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/Database/Reflection.phpt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,13 @@ if ($schemaSupported) {
6767

6868
// comments
6969
if (in_array($driverName, ['mysql', 'pgsql', 'sqlsrv'], true)) {
70+
$driver = $connection->getDriver();
71+
$tables = $driver->getTables();
72+
dump($tables);
7073
$table = $reflection->getTable('author');
74+
dump($table);
7175
Assert::same('Table containing book authors', $table->comment);
76+
throw new \Exception;
7277

7378
$column = $table->getColumn('web');
7479
Assert::same('Author\'s website URL', $column->comment);

0 commit comments

Comments
 (0)