Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
wumpz committed Aug 14, 2019
1 parent 22c6eb0 commit 55974c3
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public void testAddConstraintKeyIssue320() throws JSQLParserException {
}

@Test
public void testIssue633() throws JSQLParserException {
public void testIssue633() throws JSQLParserException, JSQLParserException, JSQLParserException {
assertSqlCanBeParsedAndDeparsed("ALTER TABLE team_phases ADD CONSTRAINT team_phases_id_key UNIQUE (id)");
}

Expand All @@ -383,4 +383,9 @@ public void testAlterTableIndex586() throws Exception {
public void testIssue259() throws JSQLParserException {
assertSqlCanBeParsedAndDeparsed("ALTER TABLE feature_v2 ADD COLUMN third_user_id int (10) unsigned DEFAULT '0' COMMENT '第三方用户id' after kdt_id");
}

@Test
public void testIssue633_2() throws JSQLParserException {
assertSqlCanBeParsedAndDeparsed("CREATE INDEX idx_american_football_action_plays_1 ON american_football_action_plays USING btree (play_type)");
}
}

0 comments on commit 55974c3

Please sign in to comment.