sql-typechecker 0.0.35 → 0.0.36

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
@@ -242913,7 +242913,7 @@ function elabCall(g, c, e) {
242913
242913
  return unifyOverloadedCall(e, argTypes, [
242914
242914
  {
242915
242915
  expectedArgs: [BuiltinTypes.Integer, BuiltinTypes.Integer],
242916
- returnT: BuiltinTypeConstructors.Array(BuiltinTypes.Integer)
242916
+ returnT: BuiltinTypes.Integer
242917
242917
  },
242918
242918
  {
242919
242919
  expectedArgs: [
@@ -242921,7 +242921,7 @@ function elabCall(g, c, e) {
242921
242921
  BuiltinTypes.Integer,
242922
242922
  BuiltinTypes.Integer
242923
242923
  ],
242924
- returnT: BuiltinTypeConstructors.Array(BuiltinTypes.Integer)
242924
+ returnT: BuiltinTypes.Integer
242925
242925
  },
242926
242926
  {
242927
242927
  expectedArgs: [
@@ -242929,7 +242929,7 @@ function elabCall(g, c, e) {
242929
242929
  BuiltinTypes.Timestamp,
242930
242930
  BuiltinTypes.Interval
242931
242931
  ],
242932
- returnT: BuiltinTypeConstructors.Array(BuiltinTypes.Timestamp)
242932
+ returnT: BuiltinTypes.Timestamp
242933
242933
  },
242934
242934
  {
242935
242935
  expectedArgs: [
@@ -242937,7 +242937,7 @@ function elabCall(g, c, e) {
242937
242937
  BuiltinTypes.Date,
242938
242938
  BuiltinTypes.Interval
242939
242939
  ],
242940
- returnT: BuiltinTypeConstructors.Array(BuiltinTypes.Date)
242940
+ returnT: BuiltinTypes.Date
242941
242941
  }
242942
242942
  ]);
242943
242943
  }