Skip to content

Commit

Permalink
remove debezium double type
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyi committed Jan 30, 2024
1 parent 15f8c9a commit d09c294
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,8 @@ private static DataType fromDebeziumType(String dbzType) {
case "int64":
return DataTypes.BIGINT();
case "float32":
case "float64":
return DataTypes.FLOAT();
case "double":
case "float64":
return DataTypes.DOUBLE();
case "boolean":
return DataTypes.BOOLEAN();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,13 @@ public void testKafkaBuildSchemaWithDelete() throws Exception {
}

@Test
@Timeout(60)
@Timeout(120)
public void testSchemaIncludeRecord1() throws Exception {
testSchemaIncludeRecord(DEBEZIUM);
}

@Test
@Timeout(60)
@Timeout(120)
public void testAllTypesWithSchema() throws Exception {
testAllTypesWithSchemaImpl(DEBEZIUM);
}
Expand Down
Loading

0 comments on commit d09c294

Please sign in to comment.