Skip to content

Commit

Permalink
Fix float to float32 for Golang (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
themaxi authored Feb 17, 2022
1 parent 4e87e56 commit 8529fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 96,7 @@ var BuildInTypes = map[string][]string{
"decimal": {"float64", "number", "float", "Float", "f64"},
"double": {"float64", "number", "float", "Float", "f64"},
"duration": {"string", "string", "char", "String", "String"},
"float": {"float", "number", "float", "Float", "f64"},
"float": {"float32", "number", "float", "Float", "f64"},
"gDay": {"string", "string", "char", "String", "String"},
"gMonth": {"string", "string", "char", "String", "String"},
"gMonthDay": {"string", "string", "char", "String", "String"},
Expand Down

0 comments on commit 8529fba

Please sign in to comment.