DBZ-814 Ignore unsupported column types

This commit is contained in:
Chris Cranford 2021-05-11 09:51:05 -04:00 committed by Gunnar Morling
parent 8306bb5f15
commit 4aeb6069a3

View File

@ -256,7 +256,8 @@ public void processChunk(ChunkColumnValue chunk) throws StreamsException {
break; break;
default: default:
throw new DebeziumException("An unsupported chunk type '" + type + "' for column '" + columnName + "'"); LOGGER.trace("Received an unsupported chunk type '{}' for column '{}', ignored.", type, columnName);
break;
} }
} }