Skip to content

Commit

Permalink
fix: revert change in PR#2597 where float was aliased to float4 from …
Browse files Browse the repository at this point in the history
…float8. float now aliases to float8 (#2598)
  • Loading branch information
davecramer committed Aug 19, 2022
1 parent 08b2db3 commit d62ba27
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -128,7 +128,7 @@ public class TypeInfoCache implements TypeInfo {
TYPE_ALIASES.put("long", "int8");
TYPE_ALIASES.put("int8", "int8");
TYPE_ALIASES.put("bigint", "int8");
TYPE_ALIASES.put("float", "float4");
TYPE_ALIASES.put("float", "float8");
TYPE_ALIASES.put("float4", "float4");
TYPE_ALIASES.put("double", "float8");
TYPE_ALIASES.put("float8", "float8");
Expand Down

0 comments on commit d62ba27

Please sign in to comment.