Skip to content

Commit 408e687

Browse files
niconoe-williamdes
authored andcommitted
Add a new test case for #377
1 parent 0ae405f commit 408e687

3 files changed

Lines changed: 499 additions & 0 deletions

File tree

tests/Parser/AlterStatementTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public function alterProvider(): array
4242
['parser/parseAlterErr4'],
4343
['parser/parseAlterTableRenameIndex'],
4444
['parser/parseAlterTablePartitionByRange1'],
45+
['parser/parseAlterTablePartitionByRange2'],
4546
['parser/parseAlterWithInvisible'],
4647
['parser/parseAlterTableCharacterSet1'],
4748
['parser/parseAlterTableCharacterSet2'],
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ALTER TABLE d PARTITION BY RANGE (MONTH(departure_date))
2+
(
3+
PARTITION p01 VALUES LESS THAN (02) ,
4+
PARTITION pmaxval VALUES LESS THAN MAXVALUE
5+
);

0 commit comments

Comments
 (0)