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 Dec 10, 2024
1 parent 600f575 commit ea14af6
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 ea14af6

Please sign in to comment.