Skip to content

Commit

Permalink
fix schema mapping for snowflake to float64
Browse files Browse the repository at this point in the history
  • Loading branch information
heavycrystal committed Oct 4, 2023
1 parent 90954c5 commit c456fd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/connectors/snowflake/qvalue_convert.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var qValueKindToSnowflakeTypeMap = map[qvalue.QValueKind]string{
var snowflakeTypeToQValueKindMap = map[string]qvalue.QValueKind{
"INT": qvalue.QValueKindInt32,
"BIGINT": qvalue.QValueKindInt64,
"FLOAT": qvalue.QValueKindFloat32,
"FLOAT": qvalue.QValueKindFloat64,
"DOUBLE": qvalue.QValueKindFloat64,
"REAL": qvalue.QValueKindFloat64,
"VARCHAR": qvalue.QValueKindString,
Expand Down

0 comments on commit c456fd7

Please sign in to comment.