@514labs/moose-lib 0.6.446 → 0.6.447
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/browserCompatible.d.mts +1 -1
- package/dist/browserCompatible.d.ts +1 -1
- package/dist/browserCompatible.js +68 -9
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs +68 -9
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/compilerPlugin.js +91 -7
- package/dist/compilerPlugin.js.map +1 -1
- package/dist/compilerPlugin.mjs +91 -7
- package/dist/compilerPlugin.mjs.map +1 -1
- package/dist/dataModels/toDataModels.js.map +1 -1
- package/dist/dataModels/toDataModels.mjs.map +1 -1
- package/dist/dmv2/index.d.mts +1 -1
- package/dist/dmv2/index.d.ts +1 -1
- package/dist/dmv2/index.js +68 -9
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs +68 -9
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/{index-D22Yb8pY.d.mts → index-FbIy0gSU.d.mts} +45 -3
- package/dist/{index-D22Yb8pY.d.ts → index-FbIy0gSU.d.ts} +45 -3
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +73 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +73 -10
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +5 -1
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +5 -1
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
package/dist/moose-runner.mjs
CHANGED
|
@@ -609,9 +609,13 @@ var init_helpers = __esm({
|
|
|
609
609
|
query,
|
|
610
610
|
query_params,
|
|
611
611
|
format: "JSONEachRow",
|
|
612
|
-
query_id: this.query_id_prefix + randomUUID()
|
|
612
|
+
query_id: this.query_id_prefix + randomUUID(),
|
|
613
613
|
// Note: wait_end_of_query deliberately NOT set here as this is used for SELECT queries
|
|
614
614
|
// where response buffering would harm streaming performance and concurrency
|
|
615
|
+
clickhouse_settings: {
|
|
616
|
+
asterisk_include_materialized_columns: 1,
|
|
617
|
+
asterisk_include_alias_columns: 1
|
|
618
|
+
}
|
|
615
619
|
});
|
|
616
620
|
const elapsedMs = performance.now() - start;
|
|
617
621
|
console.log(
|