Skip to content

Commit eb60228

Browse files
committed
move test out of integration for 5.5
1 parent 38e3f6c commit eb60228

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/com/zendesk/maxwell/schema/ddl/DDLIntegrationTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ public void testAlter() throws Exception {
4949
"create table shard_1.testDrop ( id int(11) )",
5050
"drop table shard_1.testDrop",
5151
"create table test.c ( v varchar(255) charset ascii )",
52-
"alter table test.c ALGORITHM=COPY, STATS_SAMPLE_PAGES=DEFAULT"
5352
};
5453
testIntegration(sql);
5554
}

src/test/java/com/zendesk/maxwell/schema/ddl/DDLParserTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@ public void testParsingSomeAlters() {
268268
"ALTER TABLE tournaments ADD INDEX idx_team_name ((col1 * 40) DESC)",
269269
"CREATE TABLE employees (data JSON, INDEX idx ((CAST(data->>'$.name' AS CHAR(30)) COLLATE utf8mb4_bin)))",
270270
"ALTER TABLE tasks DROP COLUMN IF EXISTS snoozed_until",
271-
"ALTER TABLE outgoing_notifications_log ADD INDEX idx_campaign_updated (campaign, last_updated_at) ALGORITHM=NOCOPY,LOCK=NONE"
271+
"ALTER TABLE outgoing_notifications_log ADD INDEX idx_campaign_updated (campaign, last_updated_at) ALGORITHM=NOCOPY,LOCK=NONE",
272+
"alter table test.c ALGORITHM=COPY, STATS_SAMPLE_PAGES=DEFAULT"
272273
};
273274

274275
for ( String s : testSQL ) {

0 commit comments

Comments
 (0)