sql-typechecker 0.0.36 → 0.0.37

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
@@ -242909,6 +242909,14 @@ function elabCall(g, c, e) {
242909
242909
  throw new InvalidArguments(e, e.function, argTypes);
242910
242910
  }
242911
242911
  }
242912
+ if (eqQNames(e.function, {name: "trim"})) {
242913
+ return unifyOverloadedCall(e, argTypes, [
242914
+ {
242915
+ expectedArgs: [BuiltinTypes.Text],
242916
+ returnT: BuiltinTypes.Text
242917
+ }
242918
+ ]);
242919
+ }
242912
242920
  if (eqQNames(e.function, {name: "generate_series"})) {
242913
242921
  return unifyOverloadedCall(e, argTypes, [
242914
242922
  {