Skip to content

Commit a3216a4

Browse files
committed
add MariaDB support
1 parent cb7d61f commit a3216a4

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests/TestCase/Command/DumpSqlCommandTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ public function testCommand(): void
4646
$this->assertOutputContains('CREATE TABLE IF NOT EXISTS "posts"');
4747
$this->assertOutputContains('INSERT INTO posts VALUES(');
4848
} elseif ($this->isDBType(Mysql::class)) {
49+
var_dump($this->_out->messages());
4950
$this->assertOutputContains('CREATE TABLE `posts` (');
5051
$this->assertOutputContains('INSERT INTO `posts` VALUES (');
5152
} elseif ($this->isDBType(Postgres::class)) {

0 commit comments

Comments
 (0)