sql-typechecker 0.0.61 → 0.0.62

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
@@ -242118,7 +242118,10 @@ function doCreateView(g, s) {
242118
242118
  })
242119
242119
  };
242120
242120
  }
242121
- function doAlterTable(_g, s) {
242121
+ function doAlterTable(g, s) {
242122
+ if (s.changes.every((c) => c.type === "add constraint" || c.type === "rename constraint" || c.type === "drop constraint" || c.type === "owner")) {
242123
+ return g;
242124
+ }
242122
242125
  return notImplementedYet(s);
242123
242126
  }
242124
242127
  function deriveNameFromExpr(expr) {