DBZ-5626 Do the snapshot also in case of schema history errors

`ALWAYS` should mean always and also this should be in line with Postgres
`ALWAYS` option.
This commit is contained in:
Vojtech Juranek 2022-11-03 14:53:01 +01:00 committed by Jiri Pechanec
parent d95f9abb2d
commit 28aa715867

View File

@ -731,7 +731,7 @@ public enum SnapshotMode implements EnumeratedValue {
/**
* Performs a snapshot of data and schema upon each connector start.
*/
ALWAYS("always", true, true, false),
ALWAYS("always", true, true, true),
/**
* Perform a snapshot of data and schema upon initial startup of a connector.