We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6055277 commit 54d3b05Copy full SHA for 54d3b05
tests/Components/CreateDefinitionTest.php
@@ -143,12 +143,11 @@ public function testBuildWithInvisibleKeyword()
143
);
144
}
145
146
- public function testBuildWithCompressed(): void
+ public function testBuildWithCompressed()
147
{
148
-
149
$query = 'CREATE TABLE `user` ( `message2` TEXT COMPRESSED )';
150
$parser = new Parser($query);
151
$stmt = $parser->statements[0];
152
- $this->assertEquals("CREATE TABLE `user` (\n `message2` text COMPRESSED\n) ",$stmt->build());
+ $this->assertEquals("CREATE TABLE `user` (\n `message2` text COMPRESSED\n) ", $stmt->build());
153
154
0 commit comments