sql-typechecker 0.0.17 → 0.0.18

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
@@ -242811,6 +242811,9 @@ function elabCall(g, c, e) {
242811
242811
  throw new InvalidArguments(e, e.function, argTypes);
242812
242812
  }
242813
242813
  }
242814
+ if (eqQNames(e.function, {name: "nextval"})) {
242815
+ return unifyCallGeneral(e, argTypes, [BuiltinTypes.Text], BuiltinTypes.Bigint);
242816
+ }
242814
242817
  if (eqQNames(e.function, {name: "any"}) || eqQNames(e.function, {name: "some"}) || eqQNames(e.function, {name: "all"})) {
242815
242818
  if (e.args.length !== 1) {
242816
242819
  throw new InvalidArguments(e, e.function, argTypes);