Skip to content

Commit

Permalink
DBZ-7880 Make schema backward compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
jpechane committed May 22, 2024
1 parent 1caeb61 commit f88f380
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ public void schemaIsCorrect() {
.field("snapshot", AbstractSourceInfoStructMaker.SNAPSHOT_RECORD_SCHEMA)
.field("db", Schema.STRING_SCHEMA)
.field("sequence", Schema.OPTIONAL_STRING_SCHEMA)
.field("ts_us", Schema.INT64_SCHEMA)
.field("ts_ns", Schema.INT64_SCHEMA)
.field("ts_us", Schema.OPTIONAL_INT64_SCHEMA)
.field("ts_ns", Schema.OPTIONAL_INT64_SCHEMA)
.field("keyspace", Schema.STRING_SCHEMA)
.field("table", Schema.STRING_SCHEMA)
.field("shard", Schema.STRING_SCHEMA)
Expand Down

0 comments on commit f88f380

Please sign in to comment.