@drzl/cli 4.24.1 → 4.24.3
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/{chunk-54E2IO7N.js → chunk-QNYJFUVS.js} +6 -1
- package/dist/chunk-QNYJFUVS.js.map +1 -0
- package/dist/cli.cjs +6 -1
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/config.cjs +5 -0
- package/dist/config.cjs.map +1 -1
- package/dist/config.js +1 -1
- package/package.json +16 -16
- package/dist/chunk-54E2IO7N.js.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
tableAliases,
|
|
25
25
|
tableFilterWarnings,
|
|
26
26
|
trpcOutDir
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-QNYJFUVS.js";
|
|
28
28
|
|
|
29
29
|
// src/cli.ts
|
|
30
30
|
import { qualifiedTableName as qualifiedTableName2, SchemaAnalyzer as SchemaAnalyzer2 } from "@drzl/analyzer";
|
|
@@ -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",
|