Skip to content

Commit

Permalink
tighten rule for detecting pre 26 char
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaohansong committed May 15, 2024
1 parent 877b3f8 commit 0fc2c18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class AirbyteFileOffsetBackingStore(
if (mapAsString.size > 0) {
val key = mapAsString.keys.stream().toList()[0]

if (!key.contains("rs")) {
if (!key.contains("\"rs\":")) {
// The state is Debezium 2.6 compatible. No need to change anything.
return mapAsString
}
Expand Down

0 comments on commit 0fc2c18

Please sign in to comment.