Skip to content

Commit

Permalink
DBZ-8499 Make source info versioned
Browse files Browse the repository at this point in the history
  • Loading branch information
jpechane committed Jan 14, 2025
1 parent cb8c9b5 commit 47cdff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void testGetSourceInfoStructMaker() {
.schema();
assertTrue(schemaResult instanceof ConnectSchema);
assertNull(schemaResult.defaultValue());
assertNull(schemaResult.version());
assertEquals(1, schemaResult.version());
assertEquals(Schema.Type.STRUCT, schemaResult.type());
assertNull(schemaResult.parameters());
assertEquals("com.google.spanner.connector.Source", schemaResult.name());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void testConstructor() {

assertTrue(schemaResult instanceof ConnectSchema);
assertNull(schemaResult.defaultValue());
assertNull(schemaResult.version());
assertEquals(1, schemaResult.version());
assertEquals(Schema.Type.STRUCT, schemaResult.type());
assertNull(schemaResult.parameters());
assertEquals("com.google.spanner.connector.Source", schemaResult.name());
Expand Down

0 comments on commit 47cdff1

Please sign in to comment.