@query-doctor/core 0.8.0-rc.9 → 0.8.1-rc.1
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/_virtual/_@oxc-project_runtime@0.122.0/helpers/defineProperty.cjs +13 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/defineProperty.mjs +13 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/toPrimitive.cjs +15 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/toPrimitive.mjs +15 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/toPropertyKey.cjs +10 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/toPropertyKey.mjs +10 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/typeof.cjs +17 -0
- package/dist/_virtual/_@oxc-project_runtime@0.122.0/helpers/typeof.mjs +12 -0
- package/dist/_virtual/_rolldown/runtime.cjs +24 -0
- package/dist/index.cjs +33 -2560
- package/dist/index.d.cts +11 -779
- package/dist/index.d.mts +11 -779
- package/dist/index.mjs +10 -2514
- package/dist/optimizer/genalgo.cjs +352 -0
- package/dist/optimizer/genalgo.cjs.map +1 -0
- package/dist/optimizer/genalgo.d.cts +111 -0
- package/dist/optimizer/genalgo.d.cts.map +1 -0
- package/dist/optimizer/genalgo.d.mts +111 -0
- package/dist/optimizer/genalgo.d.mts.map +1 -0
- package/dist/optimizer/genalgo.mjs +349 -0
- package/dist/optimizer/genalgo.mjs.map +1 -0
- package/dist/optimizer/pss-rewriter.cjs +31 -0
- package/dist/optimizer/pss-rewriter.cjs.map +1 -0
- package/dist/optimizer/pss-rewriter.d.cts +16 -0
- package/dist/optimizer/pss-rewriter.d.cts.map +1 -0
- package/dist/optimizer/pss-rewriter.d.mts +16 -0
- package/dist/optimizer/pss-rewriter.d.mts.map +1 -0
- package/dist/optimizer/pss-rewriter.mjs +31 -0
- package/dist/optimizer/pss-rewriter.mjs.map +1 -0
- package/dist/optimizer/statistics.cjs +738 -0
- package/dist/optimizer/statistics.cjs.map +1 -0
- package/dist/optimizer/statistics.d.cts +389 -0
- package/dist/optimizer/statistics.d.cts.map +1 -0
- package/dist/optimizer/statistics.d.mts +389 -0
- package/dist/optimizer/statistics.d.mts.map +1 -0
- package/dist/optimizer/statistics.mjs +729 -0
- package/dist/optimizer/statistics.mjs.map +1 -0
- package/dist/sentry.cjs +13 -0
- package/dist/sentry.cjs.map +1 -0
- package/dist/sentry.d.cts +7 -0
- package/dist/sentry.d.cts.map +1 -0
- package/dist/sentry.d.mts +7 -0
- package/dist/sentry.d.mts.map +1 -0
- package/dist/sentry.mjs +13 -0
- package/dist/sentry.mjs.map +1 -0
- package/dist/sql/analyzer.cjs +242 -0
- package/dist/sql/analyzer.cjs.map +1 -0
- package/dist/sql/analyzer.d.cts +112 -0
- package/dist/sql/analyzer.d.cts.map +1 -0
- package/dist/sql/analyzer.d.mts +112 -0
- package/dist/sql/analyzer.d.mts.map +1 -0
- package/dist/sql/analyzer.mjs +240 -0
- package/dist/sql/analyzer.mjs.map +1 -0
- package/dist/sql/ast-utils.cjs +19 -0
- package/dist/sql/ast-utils.cjs.map +1 -0
- package/dist/sql/ast-utils.d.cts +9 -0
- package/dist/sql/ast-utils.d.cts.map +1 -0
- package/dist/sql/ast-utils.d.mts +9 -0
- package/dist/sql/ast-utils.d.mts.map +1 -0
- package/dist/sql/ast-utils.mjs +17 -0
- package/dist/sql/ast-utils.mjs.map +1 -0
- package/dist/sql/builder.cjs +94 -0
- package/dist/sql/builder.cjs.map +1 -0
- package/dist/sql/builder.d.cts +37 -0
- package/dist/sql/builder.d.cts.map +1 -0
- package/dist/sql/builder.d.mts +37 -0
- package/dist/sql/builder.d.mts.map +1 -0
- package/dist/sql/builder.mjs +94 -0
- package/dist/sql/builder.mjs.map +1 -0
- package/dist/sql/database.cjs +35 -0
- package/dist/sql/database.cjs.map +1 -0
- package/dist/sql/database.d.cts +91 -0
- package/dist/sql/database.d.cts.map +1 -0
- package/dist/sql/database.d.mts +91 -0
- package/dist/sql/database.d.mts.map +1 -0
- package/dist/sql/database.mjs +32 -0
- package/dist/sql/database.mjs.map +1 -0
- package/dist/sql/indexes.cjs +17 -0
- package/dist/sql/indexes.cjs.map +1 -0
- package/dist/sql/indexes.d.cts +14 -0
- package/dist/sql/indexes.d.cts.map +1 -0
- package/dist/sql/indexes.d.mts +14 -0
- package/dist/sql/indexes.d.mts.map +1 -0
- package/dist/sql/indexes.mjs +16 -0
- package/dist/sql/indexes.mjs.map +1 -0
- package/dist/sql/nudges.cjs +484 -0
- package/dist/sql/nudges.cjs.map +1 -0
- package/dist/sql/nudges.d.cts +21 -0
- package/dist/sql/nudges.d.cts.map +1 -0
- package/dist/sql/nudges.d.mts +21 -0
- package/dist/sql/nudges.d.mts.map +1 -0
- package/dist/sql/nudges.mjs +484 -0
- package/dist/sql/nudges.mjs.map +1 -0
- package/dist/sql/permutations.cjs +28 -0
- package/dist/sql/permutations.cjs.map +1 -0
- package/dist/sql/permutations.mjs +28 -0
- package/dist/sql/permutations.mjs.map +1 -0
- package/dist/sql/pg-identifier.cjs +216 -0
- package/dist/sql/pg-identifier.cjs.map +1 -0
- package/dist/sql/pg-identifier.d.cts +31 -0
- package/dist/sql/pg-identifier.d.cts.map +1 -0
- package/dist/sql/pg-identifier.d.mts +31 -0
- package/dist/sql/pg-identifier.d.mts.map +1 -0
- package/dist/sql/pg-identifier.mjs +216 -0
- package/dist/sql/pg-identifier.mjs.map +1 -0
- package/dist/sql/walker.cjs +311 -0
- package/dist/sql/walker.cjs.map +1 -0
- package/dist/sql/walker.d.cts +15 -0
- package/dist/sql/walker.d.cts.map +1 -0
- package/dist/sql/walker.d.mts +15 -0
- package/dist/sql/walker.d.mts.map +1 -0
- package/dist/sql/walker.mjs +310 -0
- package/dist/sql/walker.mjs.map +1 -0
- package/package.json +2 -1
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts.map +0 -1
- package/dist/index.d.mts.map +0 -1
- package/dist/index.mjs.map +0 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_toPropertyKey = require("./toPropertyKey.cjs");
|
|
3
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/defineProperty.js
|
|
4
|
+
function _defineProperty(e, r, t) {
|
|
5
|
+
return (r = require_toPropertyKey.toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
6
|
+
value: t,
|
|
7
|
+
enumerable: !0,
|
|
8
|
+
configurable: !0,
|
|
9
|
+
writable: !0
|
|
10
|
+
}) : e[r] = t, e;
|
|
11
|
+
}
|
|
12
|
+
//#endregion
|
|
13
|
+
exports._defineProperty = _defineProperty;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { toPropertyKey } from "./toPropertyKey.mjs";
|
|
3
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/defineProperty.js
|
|
4
|
+
function _defineProperty(e, r, t) {
|
|
5
|
+
return (r = toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
|
6
|
+
value: t,
|
|
7
|
+
enumerable: !0,
|
|
8
|
+
configurable: !0,
|
|
9
|
+
writable: !0
|
|
10
|
+
}) : e[r] = t, e;
|
|
11
|
+
}
|
|
12
|
+
//#endregion
|
|
13
|
+
export { _defineProperty };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_typeof = require("./typeof.cjs");
|
|
3
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/toPrimitive.js
|
|
4
|
+
function toPrimitive(t, r) {
|
|
5
|
+
if ("object" != require_typeof._typeof(t) || !t) return t;
|
|
6
|
+
var e = t[Symbol.toPrimitive];
|
|
7
|
+
if (void 0 !== e) {
|
|
8
|
+
var i = e.call(t, r || "default");
|
|
9
|
+
if ("object" != require_typeof._typeof(i)) return i;
|
|
10
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
11
|
+
}
|
|
12
|
+
return ("string" === r ? String : Number)(t);
|
|
13
|
+
}
|
|
14
|
+
//#endregion
|
|
15
|
+
exports.toPrimitive = toPrimitive;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { _typeof } from "./typeof.mjs";
|
|
3
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/toPrimitive.js
|
|
4
|
+
function toPrimitive(t, r) {
|
|
5
|
+
if ("object" != _typeof(t) || !t) return t;
|
|
6
|
+
var e = t[Symbol.toPrimitive];
|
|
7
|
+
if (void 0 !== e) {
|
|
8
|
+
var i = e.call(t, r || "default");
|
|
9
|
+
if ("object" != _typeof(i)) return i;
|
|
10
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
11
|
+
}
|
|
12
|
+
return ("string" === r ? String : Number)(t);
|
|
13
|
+
}
|
|
14
|
+
//#endregion
|
|
15
|
+
export { toPrimitive };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const require_typeof = require("./typeof.cjs");
|
|
3
|
+
const require_toPrimitive = require("./toPrimitive.cjs");
|
|
4
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/toPropertyKey.js
|
|
5
|
+
function toPropertyKey(t) {
|
|
6
|
+
var i = require_toPrimitive.toPrimitive(t, "string");
|
|
7
|
+
return "symbol" == require_typeof._typeof(i) ? i : i + "";
|
|
8
|
+
}
|
|
9
|
+
//#endregion
|
|
10
|
+
exports.toPropertyKey = toPropertyKey;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { _typeof } from "./typeof.mjs";
|
|
3
|
+
import { toPrimitive } from "./toPrimitive.mjs";
|
|
4
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/toPropertyKey.js
|
|
5
|
+
function toPropertyKey(t) {
|
|
6
|
+
var i = toPrimitive(t, "string");
|
|
7
|
+
return "symbol" == _typeof(i) ? i : i + "";
|
|
8
|
+
}
|
|
9
|
+
//#endregion
|
|
10
|
+
export { toPropertyKey };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/typeof.js
|
|
3
|
+
function _typeof(o) {
|
|
4
|
+
"@babel/helpers - typeof";
|
|
5
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o) {
|
|
6
|
+
return typeof o;
|
|
7
|
+
} : function(o) {
|
|
8
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
9
|
+
}, _typeof(o);
|
|
10
|
+
}
|
|
11
|
+
//#endregion
|
|
12
|
+
Object.defineProperty(exports, "_typeof", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function() {
|
|
15
|
+
return _typeof;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region \0@oxc-project+runtime@0.122.0/helpers/typeof.js
|
|
3
|
+
function _typeof(o) {
|
|
4
|
+
"@babel/helpers - typeof";
|
|
5
|
+
return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function(o) {
|
|
6
|
+
return typeof o;
|
|
7
|
+
} : function(o) {
|
|
8
|
+
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
|
|
9
|
+
}, _typeof(o);
|
|
10
|
+
}
|
|
11
|
+
//#endregion
|
|
12
|
+
export { _typeof };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
//#region \0rolldown/runtime.js
|
|
3
|
+
var __create = Object.create;
|
|
4
|
+
var __defProp = Object.defineProperty;
|
|
5
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
+
var __copyProps = (to, from, except, desc) => {
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
+
key = keys[i];
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
|
+
get: ((k) => from[k]).bind(null, key),
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
+
value: mod,
|
|
21
|
+
enumerable: true
|
|
22
|
+
}) : target, mod));
|
|
23
|
+
//#endregion
|
|
24
|
+
exports.__toESM = __toESM;
|