DBZ-6496 Speed-up another incremental snapshot test

This commit is contained in:
Jiri Pechanec 2023-05-24 12:47:37 +02:00
parent e0659f1a0e
commit 65b46f204a

View File

@ -180,6 +180,11 @@ protected String alterTableAddColumnStatement(String tableName) {
return "ALTER TABLE " + tableName + " ADD col3 INTEGER DEFAULT 0";
}
@Override
protected int defaultIncrementalSnapshotChunkSize() {
return 250;
}
@Test
public void snapshotPreceededBySchemaChange() throws Exception {
// TODO: remove once https://github.com/Apicurio/apicurio-registry/issues/2980 is fixed