DBZ-1052 Expand known protobuf messages list

This commit is contained in:
Jiri Pechanec 2020-01-31 06:18:30 +01:00 committed by Gunnar Morling
parent 7411fdddca
commit 67e0079646

View File

@ -35,7 +35,7 @@
public class PgProtoMessageDecoder extends AbstractMessageDecoder {
private static final Logger LOGGER = LoggerFactory.getLogger(PgProtoMessageDecoder.class);
private static final Set<Op> SUPPORTED_OPS = Collect.unmodifiableSet(Op.INSERT, Op.UPDATE, Op.DELETE);
private static final Set<Op> SUPPORTED_OPS = Collect.unmodifiableSet(Op.INSERT, Op.UPDATE, Op.DELETE, Op.BEGIN, Op.COMMIT);
private boolean warnedOnUnkownOp = false;