Skip to content

Commit

Permalink
[cdc] fix float type convert error in DebeziumSchemaUtils#fromDebez…
Browse files Browse the repository at this point in the history
…iumType (#3847)
  • Loading branch information
chunji96 authored Jul 30, 2024
1 parent 76d2520 commit 1e98ba8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ private static DataType fromDebeziumType(String dbzType) {
return DataTypes.INT();
case "int64":
return DataTypes.BIGINT();
case "float":
case "float32":
case "float64":
return DataTypes.FLOAT();
Expand Down

0 comments on commit 1e98ba8

Please sign in to comment.