sql-typechecker 0.0.56 → 0.0.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/out/cli.js CHANGED
@@ -235960,11 +235960,8 @@ function normalizeTypeName(s) {
235960
235960
  if (s === "float4") {
235961
235961
  return "real";
235962
235962
  }
235963
- if (s === "float" || s === "float8") {
235964
- return "double";
235965
- }
235966
- if (s === "double precision") {
235967
- return "double";
235963
+ if (s === "float" || s === "float8" || s === "double") {
235964
+ return "double precision";
235968
235965
  }
235969
235966
  return s;
235970
235967
  }
@@ -241708,7 +241705,7 @@ var BuiltinTypes = {
241708
241705
  },
241709
241706
  Double: {
241710
241707
  kind: "scalar",
241711
- name: {name: "double"}
241708
+ name: {name: "double precision"}
241712
241709
  },
241713
241710
  Text: {
241714
241711
  kind: "scalar",