Skip to content

Commit 54d3b05

Browse files
committed
Supporting table structure with COMPRESSED columns
Signed-off-by: Fawzi E. Abdulfattah <[email protected]>
1 parent 6055277 commit 54d3b05

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/Components/CreateDefinitionTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,11 @@ public function testBuildWithInvisibleKeyword()
143143
);
144144
}
145145

146-
public function testBuildWithCompressed(): void
146+
public function testBuildWithCompressed()
147147
{
148-
149148
$query = 'CREATE TABLE `user` ( `message2` TEXT COMPRESSED )';
150149
$parser = new Parser($query);
151150
$stmt = $parser->statements[0];
152-
$this->assertEquals("CREATE TABLE `user` (\n `message2` text COMPRESSED\n) ",$stmt->build());
151+
$this->assertEquals("CREATE TABLE `user` (\n `message2` text COMPRESSED\n) ", $stmt->build());
153152
}
154153
}

0 commit comments

Comments
 (0)