Skip to content

Commit

Permalink
move test out of integration for 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
osheroff committed Nov 4, 2023
1 parent 38e3f6c commit eb60228
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public void testAlter() throws Exception {
"create table shard_1.testDrop ( id int(11) )",
"drop table shard_1.testDrop",
"create table test.c ( v varchar(255) charset ascii )",
"alter table test.c ALGORITHM=COPY, STATS_SAMPLE_PAGES=DEFAULT"
};
testIntegration(sql);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ public void testParsingSomeAlters() {
"ALTER TABLE tournaments ADD INDEX idx_team_name ((col1 * 40) DESC)",
"CREATE TABLE employees (data JSON, INDEX idx ((CAST(data->>'$.name' AS CHAR(30)) COLLATE utf8mb4_bin)))",
"ALTER TABLE tasks DROP COLUMN IF EXISTS snoozed_until",
"ALTER TABLE outgoing_notifications_log ADD INDEX idx_campaign_updated (campaign, last_updated_at) ALGORITHM=NOCOPY,LOCK=NONE"
"ALTER TABLE outgoing_notifications_log ADD INDEX idx_campaign_updated (campaign, last_updated_at) ALGORITHM=NOCOPY,LOCK=NONE",
"alter table test.c ALGORITHM=COPY, STATS_SAMPLE_PAGES=DEFAULT"
};

for ( String s : testSQL ) {
Expand Down

0 comments on commit eb60228

Please sign in to comment.