@memberjunction/sqlglot-ts 6.1.0-edge.4 → 6.1.0-edge.6
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.
|
@@ -30,10 +30,20 @@ export interface MJPostgresTranspilerOptions {
|
|
|
30
30
|
* registry, e.g. collected from the baselines), so seed INSERTs targeting those
|
|
31
31
|
* tables get their 1/0 values coerced to TRUE/FALSE.
|
|
32
32
|
*/
|
|
33
|
-
extraBitColumns?:
|
|
33
|
+
extraBitColumns?: readonly BitColumnRef[];
|
|
34
34
|
/** Per-invocation timeout in ms (default 120000 — baselines are large). */
|
|
35
35
|
timeoutMs?: number;
|
|
36
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* One entry in the cross-file BIT/BOOLEAN registry: a `[table, column]` pair, both LOWERCASED —
|
|
39
|
+
* the wire shape the dialect emits from `--collect-bitcols` and reads back from
|
|
40
|
+
* `MJ_EXTRA_BIT_COLS_FILE` (`[["entityfield","allowsnull"], …]`).
|
|
41
|
+
*
|
|
42
|
+
* Previously typed as `string[]`, which type-checked only because the value is passed straight
|
|
43
|
+
* back out as JSON and never indexed — a `"Table.Column"` string would have serialized fine and
|
|
44
|
+
* silently matched nothing.
|
|
45
|
+
*/
|
|
46
|
+
export type BitColumnRef = readonly [table: string, column: string];
|
|
37
47
|
/**
|
|
38
48
|
* One-shot transpiler for MemberJunction T-SQL → PostgreSQL via the MJ sqlglot
|
|
39
49
|
* dialect (`mj_postgres.py`). Unlike `SqlGlotClient` (a long-lived FastAPI
|
|
@@ -54,7 +64,7 @@ export interface MJPostgresTranspilerOptions {
|
|
|
54
64
|
export declare class MJPostgresTranspiler {
|
|
55
65
|
private readonly pythonPath;
|
|
56
66
|
private readonly dialectPath;
|
|
57
|
-
private
|
|
67
|
+
private extraBitColumns;
|
|
58
68
|
private readonly timeoutMs;
|
|
59
69
|
/** Lazily-written temp file holding the bit-col registry JSON. `undefined` = not yet computed, `null` = none. */
|
|
60
70
|
private bitColsFile;
|
|
@@ -69,6 +79,24 @@ export declare class MJPostgresTranspiler {
|
|
|
69
79
|
* reused across calls; removed on process exit.
|
|
70
80
|
*/
|
|
71
81
|
private getBitColsFile;
|
|
82
|
+
/**
|
|
83
|
+
* Extend the cross-file BIT/BOOLEAN registry after construction.
|
|
84
|
+
*
|
|
85
|
+
* The constructor registry is collected from the migration set's own baseline, which declares
|
|
86
|
+
* the tables that set DECLARES — never MJ core's. An Open App migration that seeds
|
|
87
|
+
* `__mj.EntityField` therefore had no type information for `AllowsNull` / `IsVirtual` /
|
|
88
|
+
* `IsPrimaryKey`, so BIT `0`/`1` passed through to a PostgreSQL BOOLEAN column and the statement
|
|
89
|
+
* failed with `column "X" is of type boolean but expression is of type integer` (issue #3839).
|
|
90
|
+
*
|
|
91
|
+
* Callers that hold a live PostgreSQL connection — `--bake-codegen` requires one — can supply
|
|
92
|
+
* the authoritative set from `information_schema`, which is both complete and correct for the
|
|
93
|
+
* core version actually installed, unlike a checked-in map that goes stale as columns are added.
|
|
94
|
+
*
|
|
95
|
+
* Must be called before the first `transpile()`: the registry file is materialised lazily and
|
|
96
|
+
* cached, so this invalidates that cache to keep late additions honest rather than silently
|
|
97
|
+
* ignored.
|
|
98
|
+
*/
|
|
99
|
+
addExtraBitColumns(columns: readonly BitColumnRef[]): void;
|
|
72
100
|
/** Transpile T-SQL to PostgreSQL. Statements the dialect can't emit land in `unhandled`. */
|
|
73
101
|
transpile(tsql: string): Promise<MJPostgresTranspileResult>;
|
|
74
102
|
/**
|
|
@@ -76,7 +104,7 @@ export declare class MJPostgresTranspiler {
|
|
|
76
104
|
* given SQL — used to build the cross-file registry from baselines before
|
|
77
105
|
* transpiling individual migrations.
|
|
78
106
|
*/
|
|
79
|
-
collectBitColumns(sql: string): Promise<
|
|
107
|
+
collectBitColumns(sql: string): Promise<BitColumnRef[]>;
|
|
80
108
|
/** Verify the interpreter + sqlglot are available; throws with install guidance if not. */
|
|
81
109
|
preflight(): Promise<void>;
|
|
82
110
|
private runDialect;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MJPostgresTranspiler.d.ts","sourceRoot":"","sources":["../src/MJPostgresTranspiler.ts"],"names":[],"mappings":"AAYA,gFAAgF;AAChF,MAAM,WAAW,oBAAoB;IACnC,wDAAwD;IACxD,IAAI,EAAE,MAAM,CAAC;IACb,+DAA+D;IAC/D,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,mFAAmF;AACnF,MAAM,WAAW,yBAAyB;IACxC,mDAAmD;IACnD,GAAG,EAAE,MAAM,EAAE,CAAC;IACd,uEAAuE;IACvE,SAAS,EAAE,oBAAoB,EAAE,CAAC;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,oBAAoB,EAAE,CAAC;CAClC;AAED,MAAM,WAAW,2BAA2B;IAC1C;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,eAAe,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"MJPostgresTranspiler.d.ts","sourceRoot":"","sources":["../src/MJPostgresTranspiler.ts"],"names":[],"mappings":"AAYA,gFAAgF;AAChF,MAAM,WAAW,oBAAoB;IACnC,wDAAwD;IACxD,IAAI,EAAE,MAAM,CAAC;IACb,+DAA+D;IAC/D,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,mFAAmF;AACnF,MAAM,WAAW,yBAAyB;IACxC,mDAAmD;IACnD,GAAG,EAAE,MAAM,EAAE,CAAC;IACd,uEAAuE;IACvE,SAAS,EAAE,oBAAoB,EAAE,CAAC;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,oBAAoB,EAAE,CAAC;CAClC;AAED,MAAM,WAAW,2BAA2B;IAC1C;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,eAAe,CAAC,EAAE,SAAS,YAAY,EAAE,CAAC;IAC1C,2EAA2E;IAC3E,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED;;;;;;;;GAQG;AACH,MAAM,MAAM,YAAY,GAAG,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAC;AAuBpE;;;;;;;;;;;;;;;;GAgBG;AACH,qBAAa,oBAAoB;IAC/B,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAS;IACpC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAS;IACrC,OAAO,CAAC,eAAe,CAAiB;IACxC,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAS;IACnC,iHAAiH;IACjH,OAAO,CAAC,WAAW,CAA4B;gBAEnC,OAAO,CAAC,EAAE,2BAA2B;IAOjD;;;;;;;;OAQG;IACH,OAAO,CAAC,cAAc;IAmBtB;;;;;;;;;;;;;;;;OAgBG;IACH,kBAAkB,CAAC,OAAO,EAAE,SAAS,YAAY,EAAE,GAAG,IAAI;IAQ1D,4FAA4F;IACtF,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,yBAAyB,CAAC;IASjE;;;;OAIG;IACG,iBAAiB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,YAAY,EAAE,CAAC;IAS7D,2FAA2F;IACrF,SAAS,IAAI,OAAO,CAAC,IAAI,CAAC;IAIhC,OAAO,CAAC,UAAU;CAuEnB"}
|
|
@@ -7,6 +7,10 @@ const __filename = fileURLToPath(import.meta.url);
|
|
|
7
7
|
const __dirname = path.dirname(__filename);
|
|
8
8
|
/** Process-unique sequence for temp bit-column registry files (no Date/random needed). */
|
|
9
9
|
let bitColsFileSeq = 0;
|
|
10
|
+
/** Runtime narrow for a registry entry parsed from the dialect's JSON output. */
|
|
11
|
+
function isBitColumnRef(v) {
|
|
12
|
+
return Array.isArray(v) && v.length === 2 && typeof v[0] === 'string' && typeof v[1] === 'string';
|
|
13
|
+
}
|
|
10
14
|
/**
|
|
11
15
|
* Resolve the MJ dialect script path.
|
|
12
16
|
* When running from dist/ the path is ../src/python/mj_postgres.py
|
|
@@ -44,7 +48,7 @@ export class MJPostgresTranspiler {
|
|
|
44
48
|
constructor(options) {
|
|
45
49
|
this.pythonPath = options?.pythonPath ?? process.env.MJ_SQLGLOT_PYTHON ?? 'python3';
|
|
46
50
|
this.dialectPath = resolveDialectPath();
|
|
47
|
-
this.extraBitColumns = options?.extraBitColumns ?? [];
|
|
51
|
+
this.extraBitColumns = [...(options?.extraBitColumns ?? [])];
|
|
48
52
|
this.timeoutMs = options?.timeoutMs ?? 120_000;
|
|
49
53
|
}
|
|
50
54
|
/**
|
|
@@ -76,6 +80,32 @@ export class MJPostgresTranspiler {
|
|
|
76
80
|
this.bitColsFile = file;
|
|
77
81
|
return file;
|
|
78
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* Extend the cross-file BIT/BOOLEAN registry after construction.
|
|
85
|
+
*
|
|
86
|
+
* The constructor registry is collected from the migration set's own baseline, which declares
|
|
87
|
+
* the tables that set DECLARES — never MJ core's. An Open App migration that seeds
|
|
88
|
+
* `__mj.EntityField` therefore had no type information for `AllowsNull` / `IsVirtual` /
|
|
89
|
+
* `IsPrimaryKey`, so BIT `0`/`1` passed through to a PostgreSQL BOOLEAN column and the statement
|
|
90
|
+
* failed with `column "X" is of type boolean but expression is of type integer` (issue #3839).
|
|
91
|
+
*
|
|
92
|
+
* Callers that hold a live PostgreSQL connection — `--bake-codegen` requires one — can supply
|
|
93
|
+
* the authoritative set from `information_schema`, which is both complete and correct for the
|
|
94
|
+
* core version actually installed, unlike a checked-in map that goes stale as columns are added.
|
|
95
|
+
*
|
|
96
|
+
* Must be called before the first `transpile()`: the registry file is materialised lazily and
|
|
97
|
+
* cached, so this invalidates that cache to keep late additions honest rather than silently
|
|
98
|
+
* ignored.
|
|
99
|
+
*/
|
|
100
|
+
addExtraBitColumns(columns) {
|
|
101
|
+
if (columns.length === 0)
|
|
102
|
+
return;
|
|
103
|
+
const seen = new Map();
|
|
104
|
+
for (const c of [...this.extraBitColumns, ...columns])
|
|
105
|
+
seen.set(`${c[0]}\u0000${c[1]}`, c);
|
|
106
|
+
this.extraBitColumns = [...seen.values()];
|
|
107
|
+
this.bitColsFile = undefined;
|
|
108
|
+
}
|
|
79
109
|
/** Transpile T-SQL to PostgreSQL. Statements the dialect can't emit land in `unhandled`. */
|
|
80
110
|
async transpile(tsql) {
|
|
81
111
|
const stdout = await this.runDialect([], tsql);
|
|
@@ -93,7 +123,7 @@ export class MJPostgresTranspiler {
|
|
|
93
123
|
async collectBitColumns(sql) {
|
|
94
124
|
const stdout = await this.runDialect(['--collect-bitcols'], sql);
|
|
95
125
|
const parsed = JSON.parse(stdout);
|
|
96
|
-
if (!Array.isArray(parsed)) {
|
|
126
|
+
if (!Array.isArray(parsed) || !parsed.every(isBitColumnRef)) {
|
|
97
127
|
throw new Error(`MJPostgresTranspiler: unexpected --collect-bitcols output: ${stdout.slice(0, 200)}`);
|
|
98
128
|
}
|
|
99
129
|
return parsed;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MJPostgresTranspiler.js","sourceRoot":"","sources":["../src/MJPostgresTranspiler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAChE,OAAO,EAAE,MAAM,SAAS,CAAC;AACzB,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;AAE3C,0FAA0F;AAC1F,IAAI,cAAc,GAAG,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"MJPostgresTranspiler.js","sourceRoot":"","sources":["../src/MJPostgresTranspiler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAChE,OAAO,EAAE,MAAM,SAAS,CAAC;AACzB,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;AAE3C,0FAA0F;AAC1F,IAAI,cAAc,GAAG,CAAC,CAAC;AAoDvB,iFAAiF;AACjF,SAAS,cAAc,CAAC,CAAU;IAChC,OAAO,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,QAAQ,IAAI,OAAO,CAAC,CAAC,CAAC,CAAC,KAAK,QAAQ,CAAC;AACpG,CAAC;AAED;;;;GAIG;AACH,SAAS,kBAAkB;IACzB,MAAM,UAAU,GAAG;QACjB,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,gBAAgB,CAAC,EAAE,aAAa;QAC/E,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,QAAQ,EAAE,gBAAgB,CAAC,EAAe,qBAAqB;KACxF,CAAC;IACF,KAAK,MAAM,SAAS,IAAI,UAAU,EAAE,CAAC;QACnC,IAAI,UAAU,CAAC,SAAS,CAAC;YAAE,OAAO,SAAS,CAAC;IAC9C,CAAC;IACD,OAAO,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,wCAAwC;AAChE,CAAC;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,OAAO,oBAAoB;IAQ/B,YAAY,OAAqC;QAC/C,IAAI,CAAC,UAAU,GAAG,OAAO,EAAE,UAAU,IAAI,OAAO,CAAC,GAAG,CAAC,iBAAiB,IAAI,SAAS,CAAC;QACpF,IAAI,CAAC,WAAW,GAAG,kBAAkB,EAAE,CAAC;QACxC,IAAI,CAAC,eAAe,GAAG,CAAC,GAAG,CAAC,OAAO,EAAE,eAAe,IAAI,EAAE,CAAC,CAAC,CAAC;QAC7D,IAAI,CAAC,SAAS,GAAG,OAAO,EAAE,SAAS,IAAI,OAAO,CAAC;IACjD,CAAC;IAED;;;;;;;;OAQG;IACK,cAAc;QACpB,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS;YAAE,OAAO,IAAI,CAAC,WAAW,CAAC;QAC5D,IAAI,IAAI,CAAC,eAAe,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;YACtC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;YACxB,OAAO,IAAI,CAAC;QACd,CAAC;QACD,MAAM,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,EAAE,oBAAoB,OAAO,CAAC,GAAG,IAAI,cAAc,EAAE,OAAO,CAAC,CAAC;QAChG,aAAa,CAAC,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC,CAAC;QAClE,OAAO,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,EAAE;YACxB,IAAI,CAAC;gBACH,UAAU,CAAC,IAAI,CAAC,CAAC;YACnB,CAAC;YAAC,MAAM,CAAC;gBACP,yBAAyB;YAC3B,CAAC;QACH,CAAC,CAAC,CAAC;QACH,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QACxB,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;;;;;;;;;;;;;;;OAgBG;IACH,kBAAkB,CAAC,OAAgC;QACjD,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC;YAAE,OAAO;QACjC,MAAM,IAAI,GAAG,IAAI,GAAG,EAAwB,CAAC;QAC7C,KAAK,MAAM,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,eAAe,EAAE,GAAG,OAAO,CAAC;YAAE,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC;QAC3F,IAAI,CAAC,eAAe,GAAG,CAAC,GAAG,IAAI,CAAC,MAAM,EAAE,CAAC,CAAC;QAC1C,IAAI,CAAC,WAAW,GAAG,SAAS,CAAC;IAC/B,CAAC;IAED,4FAA4F;IAC5F,KAAK,CAAC,SAAS,CAAC,IAAY;QAC1B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;QAC/C,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAA8B,CAAC;QAC/D,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC;YACnE,MAAM,IAAI,KAAK,CAAC,0DAA0D,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;QACpG,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,iBAAiB,CAAC,GAAW;QACjC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,CAAC,mBAAmB,CAAC,EAAE,GAAG,CAAC,CAAC;QACjE,MAAM,MAAM,GAAY,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;QAC3C,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,cAAc,CAAC,EAAE,CAAC;YAC5D,MAAM,IAAI,KAAK,CAAC,8DAA8D,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;QACxG,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IAED,2FAA2F;IAC3F,KAAK,CAAC,SAAS;QACb,MAAM,IAAI,CAAC,UAAU,CAAC,EAAE,EAAE,WAAW,CAAC,CAAC;IACzC,CAAC;IAEO,UAAU,CAAC,IAAc,EAAE,KAAa;QAC9C,OAAO,IAAI,OAAO,CAAS,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YAC7C,MAAM,WAAW,GAAG,IAAI,CAAC,cAAc,EAAE,CAAC;YAC1C,MAAM,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,UAAU,EAAE,CAAC,IAAI,CAAC,WAAW,EAAE,GAAG,IAAI,CAAC,EAAE;gBAC/D,KAAK,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC;gBAC/B,GAAG,EAAE;oBACH,GAAG,OAAO,CAAC,GAAG;oBACd,yEAAyE;oBACzE,wEAAwE;oBACxE,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,EAAE,sBAAsB,EAAE,WAAW,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;iBAChE;aACF,CAAC,CAAC;YAEH,IAAI,MAAM,GAAG,EAAE,CAAC;YAChB,IAAI,MAAM,GAAG,EAAE,CAAC;YAChB,IAAI,OAAO,GAAG,KAAK,CAAC;YAEpB,MAAM,OAAO,GAAG,UAAU,CAAC,GAAG,EAAE;gBAC9B,IAAI,CAAC,OAAO,EAAE,CAAC;oBACb,OAAO,GAAG,IAAI,CAAC;oBACf,IAAI,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;oBACrB,MAAM,CAAC,IAAI,KAAK,CAAC,4DAA4D,IAAI,CAAC,SAAS,IAAI,CAAC,CAAC,CAAC;gBACpG,CAAC;YACH,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,CAAC;YAEnB,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAa,EAAE,EAAE,GAAG,MAAM,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;YAC3E,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,KAAa,EAAE,EAAE,GAAG,MAAM,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;YAE3E,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,GAA0B,EAAE,EAAE;gBAC9C,IAAI,OAAO;oBAAE,OAAO;gBACpB,OAAO,GAAG,IAAI,CAAC;gBACf,YAAY,CAAC,OAAO,CAAC,CAAC;gBACtB,MAAM,CACJ,GAAG,CAAC,IAAI,KAAK,QAAQ;oBACnB,CAAC,CAAC,IAAI,KAAK,CACP,6CAA6C,IAAI,CAAC,UAAU,eAAe;wBACzE,4FAA4F,CAC/F;oBACH,CAAC,CAAC,IAAI,KAAK,CAAC,kDAAkD,GAAG,CAAC,OAAO,EAAE,CAAC,CAC/E,CAAC;YACJ,CAAC,CAAC,CAAC;YAEH,IAAI,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,IAAI,EAAE,EAAE;gBACxB,IAAI,OAAO;oBAAE,OAAO;gBACpB,OAAO,GAAG,IAAI,CAAC;gBACf,YAAY,CAAC,OAAO,CAAC,CAAC;gBACtB,IAAI,IAAI,KAAK,CAAC,EAAE,CAAC;oBACf,OAAO,CAAC,MAAM,CAAC,CAAC;oBAChB,OAAO;gBACT,CAAC;gBACD,IAAI,8BAA8B,CAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC;oBAChD,MAAM,CACJ,IAAI,KAAK,CACP,0CAA0C,IAAI,CAAC,UAAU,2BAA2B;wBAClF,oBAAoB,IAAI,CAAC,UAAU,+BAA+B,CACrE,CACF,CAAC;oBACF,OAAO;gBACT,CAAC;gBACD,MAAM,CACJ,IAAI,KAAK,CACP,kDAAkD,IAAI,GAAG;oBACvD,CAAC,MAAM,CAAC,CAAC,CAAC,aAAa,MAAM,CAAC,KAAK,CAAC,CAAC,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,CACtD,CACF,CAAC;YACJ,CAAC,CAAC,CAAC;YAEH,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACxB,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;QACnB,CAAC,CAAC,CAAC;IACL,CAAC;CACF"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { SqlGlotClient } from './SqlGlotClient.js';
|
|
2
2
|
export { MJPostgresTranspiler } from './MJPostgresTranspiler.js';
|
|
3
|
-
export type { MJPostgresTranspilerOptions, MJPostgresTranspileResult, MJUnhandledStatement, } from './MJPostgresTranspiler.js';
|
|
3
|
+
export type { MJPostgresTranspilerOptions, MJPostgresTranspileResult, MJUnhandledStatement, BitColumnRef, } from './MJPostgresTranspiler.js';
|
|
4
4
|
export type { SQLDialect, ErrorLevel, TranspileOptions, TranspileResult, ParseOptions, ParseResult, SqlGlotClientOptions, HealthStatus, } from './types.js';
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACjE,YAAY,EACV,2BAA2B,EAC3B,yBAAyB,EACzB,oBAAoB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AACjE,YAAY,EACV,2BAA2B,EAC3B,yBAAyB,EACzB,oBAAoB,EACpB,YAAY,GACb,MAAM,2BAA2B,CAAC;AACnC,YAAY,EACV,UAAU,EACV,UAAU,EACV,gBAAgB,EAChB,eAAe,EACf,YAAY,EACZ,WAAW,EACX,oBAAoB,EACpB,YAAY,GACb,MAAM,YAAY,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/sqlglot-ts",
|
|
3
|
-
"version": "6.1.0-edge.
|
|
3
|
+
"version": "6.1.0-edge.6",
|
|
4
4
|
"description": "TypeScript wrapper for Python's sqlglot SQL transpiler. Manages a local Python FastAPI microservice to provide deterministic SQL dialect conversion.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|