@drzl/cli 4.24.1 → 4.24.2
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/dist/cli.cjs +1 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/package.json +16 -16
package/dist/cli.js
CHANGED
|
@@ -794,7 +794,7 @@ function checkFindings(table) {
|
|
|
794
794
|
const label = k.name ? `"${k.name}"` : "an unnamed constraint";
|
|
795
795
|
const raw = k.expression ?? "";
|
|
796
796
|
const expr = raw.trim() ? raw : "(empty)";
|
|
797
|
-
const parsed = parseCheck(raw, k.name);
|
|
797
|
+
const parsed = parseCheck(raw, k.name, table.dialect);
|
|
798
798
|
if (!parsed.ok) {
|
|
799
799
|
out.push({
|
|
800
800
|
kind: "check-declined",
|