@514labs/moose-lib 0.6.256-ci-13-g0676e94d → 0.6.256-ci-1-g6ca86038
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-rJWgGLbx.d.ts → browserCompatible-B_aEflr_.d.ts} +1 -1
- package/dist/{browserCompatible-qyN2q53w.d.mts → browserCompatible-DnYA4Zgi.d.mts} +1 -1
- package/dist/browserCompatible.d.mts +2 -2
- package/dist/browserCompatible.d.ts +2 -2
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.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.map +1 -1
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/{index-CfodYXlw.d.mts → index-rECDLgTX.d.mts} +2 -43
- package/dist/{index-CfodYXlw.d.ts → index-rECDLgTX.d.ts} +2 -43
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +0 -2
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +1 -35
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +1 -35
- package/dist/moose-runner.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -193,9 +193,7 @@ declare enum ClickHouseEngines {
|
|
|
193
193
|
ReplicatedMergeTree = "ReplicatedMergeTree",
|
|
194
194
|
ReplicatedReplacingMergeTree = "ReplicatedReplacingMergeTree",
|
|
195
195
|
ReplicatedAggregatingMergeTree = "ReplicatedAggregatingMergeTree",
|
|
196
|
-
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree"
|
|
197
|
-
ReplicatedCollapsingMergeTree = "ReplicatedCollapsingMergeTree",
|
|
198
|
-
ReplicatedVersionedCollapsingMergeTree = "ReplicatedVersionedCollapsingMergeTree"
|
|
196
|
+
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree"
|
|
199
197
|
}
|
|
200
198
|
/**
|
|
201
199
|
* Drops an existing view if it exists.
|
|
@@ -493,23 +491,6 @@ type SummingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
|
493
491
|
engine: ClickHouseEngines.SummingMergeTree;
|
|
494
492
|
columns?: string[];
|
|
495
493
|
};
|
|
496
|
-
/**
|
|
497
|
-
* Configuration for CollapsingMergeTree engine
|
|
498
|
-
* @template T The data type of the records stored in the table.
|
|
499
|
-
*/
|
|
500
|
-
type CollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
501
|
-
engine: ClickHouseEngines.CollapsingMergeTree;
|
|
502
|
-
sign: keyof T & string;
|
|
503
|
-
};
|
|
504
|
-
/**
|
|
505
|
-
* Configuration for VersionedCollapsingMergeTree engine
|
|
506
|
-
* @template T The data type of the records stored in the table.
|
|
507
|
-
*/
|
|
508
|
-
type VersionedCollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
509
|
-
engine: ClickHouseEngines.VersionedCollapsingMergeTree;
|
|
510
|
-
sign: keyof T & string;
|
|
511
|
-
ver: keyof T & string;
|
|
512
|
-
};
|
|
513
494
|
interface ReplicatedEngineProperties {
|
|
514
495
|
keeperPath?: string;
|
|
515
496
|
replicaName?: string;
|
|
@@ -558,28 +539,6 @@ type ReplicatedAggregatingMergeTreeConfig<T> = Omit<AggregatingMergeTreeConfig<T
|
|
|
558
539
|
type ReplicatedSummingMergeTreeConfig<T> = Omit<SummingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
559
540
|
engine: ClickHouseEngines.ReplicatedSummingMergeTree;
|
|
560
541
|
};
|
|
561
|
-
/**
|
|
562
|
-
* Configuration for ReplicatedCollapsingMergeTree engine
|
|
563
|
-
* @template T The data type of the records stored in the table.
|
|
564
|
-
*
|
|
565
|
-
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
566
|
-
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
567
|
-
* provide both parameters or neither (to use server defaults).
|
|
568
|
-
*/
|
|
569
|
-
type ReplicatedCollapsingMergeTreeConfig<T> = Omit<CollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
570
|
-
engine: ClickHouseEngines.ReplicatedCollapsingMergeTree;
|
|
571
|
-
};
|
|
572
|
-
/**
|
|
573
|
-
* Configuration for ReplicatedVersionedCollapsingMergeTree engine
|
|
574
|
-
* @template T The data type of the records stored in the table.
|
|
575
|
-
*
|
|
576
|
-
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
577
|
-
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
578
|
-
* provide both parameters or neither (to use server defaults).
|
|
579
|
-
*/
|
|
580
|
-
type ReplicatedVersionedCollapsingMergeTreeConfig<T> = Omit<VersionedCollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
581
|
-
engine: ClickHouseEngines.ReplicatedVersionedCollapsingMergeTree;
|
|
582
|
-
};
|
|
583
542
|
/**
|
|
584
543
|
* Configuration for S3Queue engine - only non-alterable constructor parameters.
|
|
585
544
|
* S3Queue-specific settings like 'mode', 'keeper_path', etc. should be specified
|
|
@@ -720,7 +679,7 @@ type IcebergS3Config<T> = Omit<BaseOlapConfig<T>, "orderByFields" | "orderByExpr
|
|
|
720
679
|
* @template T The data type of the records stored in the table.
|
|
721
680
|
*/
|
|
722
681
|
type LegacyOlapConfig<T> = BaseOlapConfig<T>;
|
|
723
|
-
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> |
|
|
682
|
+
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> | ReplicatedMergeTreeConfig<T> | ReplicatedReplacingMergeTreeConfig<T> | ReplicatedAggregatingMergeTreeConfig<T> | ReplicatedSummingMergeTreeConfig<T> | S3QueueConfig<T> | S3Config<T> | BufferConfig<T> | DistributedConfig<T> | IcebergS3Config<T>;
|
|
724
683
|
/**
|
|
725
684
|
* Union of all engine-specific configurations (new API)
|
|
726
685
|
* @template T The data type of the records stored in the table.
|
|
@@ -193,9 +193,7 @@ declare enum ClickHouseEngines {
|
|
|
193
193
|
ReplicatedMergeTree = "ReplicatedMergeTree",
|
|
194
194
|
ReplicatedReplacingMergeTree = "ReplicatedReplacingMergeTree",
|
|
195
195
|
ReplicatedAggregatingMergeTree = "ReplicatedAggregatingMergeTree",
|
|
196
|
-
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree"
|
|
197
|
-
ReplicatedCollapsingMergeTree = "ReplicatedCollapsingMergeTree",
|
|
198
|
-
ReplicatedVersionedCollapsingMergeTree = "ReplicatedVersionedCollapsingMergeTree"
|
|
196
|
+
ReplicatedSummingMergeTree = "ReplicatedSummingMergeTree"
|
|
199
197
|
}
|
|
200
198
|
/**
|
|
201
199
|
* Drops an existing view if it exists.
|
|
@@ -493,23 +491,6 @@ type SummingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
|
493
491
|
engine: ClickHouseEngines.SummingMergeTree;
|
|
494
492
|
columns?: string[];
|
|
495
493
|
};
|
|
496
|
-
/**
|
|
497
|
-
* Configuration for CollapsingMergeTree engine
|
|
498
|
-
* @template T The data type of the records stored in the table.
|
|
499
|
-
*/
|
|
500
|
-
type CollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
501
|
-
engine: ClickHouseEngines.CollapsingMergeTree;
|
|
502
|
-
sign: keyof T & string;
|
|
503
|
-
};
|
|
504
|
-
/**
|
|
505
|
-
* Configuration for VersionedCollapsingMergeTree engine
|
|
506
|
-
* @template T The data type of the records stored in the table.
|
|
507
|
-
*/
|
|
508
|
-
type VersionedCollapsingMergeTreeConfig<T> = BaseOlapConfig<T> & {
|
|
509
|
-
engine: ClickHouseEngines.VersionedCollapsingMergeTree;
|
|
510
|
-
sign: keyof T & string;
|
|
511
|
-
ver: keyof T & string;
|
|
512
|
-
};
|
|
513
494
|
interface ReplicatedEngineProperties {
|
|
514
495
|
keeperPath?: string;
|
|
515
496
|
replicaName?: string;
|
|
@@ -558,28 +539,6 @@ type ReplicatedAggregatingMergeTreeConfig<T> = Omit<AggregatingMergeTreeConfig<T
|
|
|
558
539
|
type ReplicatedSummingMergeTreeConfig<T> = Omit<SummingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
559
540
|
engine: ClickHouseEngines.ReplicatedSummingMergeTree;
|
|
560
541
|
};
|
|
561
|
-
/**
|
|
562
|
-
* Configuration for ReplicatedCollapsingMergeTree engine
|
|
563
|
-
* @template T The data type of the records stored in the table.
|
|
564
|
-
*
|
|
565
|
-
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
566
|
-
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
567
|
-
* provide both parameters or neither (to use server defaults).
|
|
568
|
-
*/
|
|
569
|
-
type ReplicatedCollapsingMergeTreeConfig<T> = Omit<CollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
570
|
-
engine: ClickHouseEngines.ReplicatedCollapsingMergeTree;
|
|
571
|
-
};
|
|
572
|
-
/**
|
|
573
|
-
* Configuration for ReplicatedVersionedCollapsingMergeTree engine
|
|
574
|
-
* @template T The data type of the records stored in the table.
|
|
575
|
-
*
|
|
576
|
-
* Note: keeperPath and replicaName are optional. Omit them for ClickHouse Cloud,
|
|
577
|
-
* which manages replication automatically. For self-hosted with ClickHouse Keeper,
|
|
578
|
-
* provide both parameters or neither (to use server defaults).
|
|
579
|
-
*/
|
|
580
|
-
type ReplicatedVersionedCollapsingMergeTreeConfig<T> = Omit<VersionedCollapsingMergeTreeConfig<T>, "engine"> & ReplicatedEngineProperties & {
|
|
581
|
-
engine: ClickHouseEngines.ReplicatedVersionedCollapsingMergeTree;
|
|
582
|
-
};
|
|
583
542
|
/**
|
|
584
543
|
* Configuration for S3Queue engine - only non-alterable constructor parameters.
|
|
585
544
|
* S3Queue-specific settings like 'mode', 'keeper_path', etc. should be specified
|
|
@@ -720,7 +679,7 @@ type IcebergS3Config<T> = Omit<BaseOlapConfig<T>, "orderByFields" | "orderByExpr
|
|
|
720
679
|
* @template T The data type of the records stored in the table.
|
|
721
680
|
*/
|
|
722
681
|
type LegacyOlapConfig<T> = BaseOlapConfig<T>;
|
|
723
|
-
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> |
|
|
682
|
+
type EngineConfig<T> = MergeTreeConfig<T> | ReplacingMergeTreeConfig<T> | AggregatingMergeTreeConfig<T> | SummingMergeTreeConfig<T> | ReplicatedMergeTreeConfig<T> | ReplicatedReplacingMergeTreeConfig<T> | ReplicatedAggregatingMergeTreeConfig<T> | ReplicatedSummingMergeTreeConfig<T> | S3QueueConfig<T> | S3Config<T> | BufferConfig<T> | DistributedConfig<T> | IcebergS3Config<T>;
|
|
724
683
|
/**
|
|
725
684
|
* Union of all engine-specific configurations (new API)
|
|
726
685
|
* @template T The data type of the records stored in the table.
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-
|
|
2
|
-
import { K as ApiUtil, a4 as MooseClient } from './index-
|
|
3
|
-
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-
|
|
1
|
+
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-DnYA4Zgi.mjs';
|
|
2
|
+
import { K as ApiUtil, a4 as MooseClient } from './index-rECDLgTX.mjs';
|
|
3
|
+
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-rECDLgTX.mjs';
|
|
4
4
|
import * as _clickhouse_client from '@clickhouse/client';
|
|
5
5
|
import { KafkaJS } from '@confluentinc/kafka-javascript';
|
|
6
6
|
import http from 'http';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-
|
|
2
|
-
import { K as ApiUtil, a4 as MooseClient } from './index-
|
|
3
|
-
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-
|
|
1
|
+
export { C as ClickHouseByteSize, q as ClickHouseCodec, j as ClickHouseDecimal, n as ClickHouseDefault, k as ClickHouseFixedStringSize, l as ClickHouseFloat, a as ClickHouseInt, m as ClickHouseJson, e as ClickHouseLineString, p as ClickHouseMaterialized, f as ClickHouseMultiLineString, h as ClickHouseMultiPolygon, b as ClickHouseNamedTuple, c as ClickHousePoint, g as ClickHousePolygon, i as ClickHousePrecision, d as ClickHouseRing, o as ClickHouseTTL, D as DateTime, r as DateTime64, t as DateTime64String, s as DateTimeString, E as Decimal, F as FixedString, u as Float32, v as Float64, w as Int16, x as Int32, y as Int64, I as Int8, J as JWT, K as Key, L as LowCardinality, z as UInt16, A as UInt32, B as UInt64, U as UInt8, W as WithDefault } from './browserCompatible-B_aEflr_.js';
|
|
2
|
+
import { K as ApiUtil, a4 as MooseClient } from './index-rECDLgTX.js';
|
|
3
|
+
export { A as Aggregated, h as Api, i as ApiConfig, ad as ApiHelpers, a5 as Blocks, a6 as ClickHouseEngines, C as ConsumptionApi, ae as ConsumptionHelpers, N as ConsumptionUtil, e as DeadLetter, D as DeadLetterModel, f as DeadLetterQueue, l as ETLPipeline, m as ETLPipelineConfig, E as EgressConfig, F as FrameworkApp, Q as IdentifierBrandedString, I as IngestApi, g as IngestConfig, j as IngestPipeline, L as LifeCycle, M as MaterializedView, R as NonIdentifierBrandedString, a as OlapConfig, O as OlapTable, aa as QueryClient, X as RawValue, b as S3QueueTableSettings, S as SimpleAggregated, Z as Sql, k as SqlResource, c as Stream, d as StreamConfig, T as Task, U as Value, V as View, n as WebApp, o as WebAppConfig, p as WebAppHandler, W as Workflow, ab as WorkflowClient, a2 as createClickhouseParameter, a8 as createMaterializedView, a7 as dropView, x as getApi, w as getApis, v as getIngestApi, u as getIngestApis, z as getSqlResource, y as getSqlResources, t as getStream, s as getStreams, r as getTable, q as getTables, ac as getTemporalClient, a1 as getValueFromParameter, J as getWebApp, H as getWebApps, G as getWorkflow, B as getWorkflows, af as joinQueries, a3 as mapToClickHouseType, a9 as populateTable, P as quoteIdentifier, Y as sql, $ as toQuery, a0 as toQueryPreview, _ as toStaticQuery } from './index-rECDLgTX.js';
|
|
4
4
|
import * as _clickhouse_client from '@clickhouse/client';
|
|
5
5
|
import { KafkaJS } from '@confluentinc/kafka-javascript';
|
|
6
6
|
import http from 'http';
|
package/dist/index.js
CHANGED
|
@@ -720,8 +720,6 @@ var ClickHouseEngines = /* @__PURE__ */ ((ClickHouseEngines2) => {
|
|
|
720
720
|
ClickHouseEngines2["ReplicatedReplacingMergeTree"] = "ReplicatedReplacingMergeTree";
|
|
721
721
|
ClickHouseEngines2["ReplicatedAggregatingMergeTree"] = "ReplicatedAggregatingMergeTree";
|
|
722
722
|
ClickHouseEngines2["ReplicatedSummingMergeTree"] = "ReplicatedSummingMergeTree";
|
|
723
|
-
ClickHouseEngines2["ReplicatedCollapsingMergeTree"] = "ReplicatedCollapsingMergeTree";
|
|
724
|
-
ClickHouseEngines2["ReplicatedVersionedCollapsingMergeTree"] = "ReplicatedVersionedCollapsingMergeTree";
|
|
725
723
|
return ClickHouseEngines2;
|
|
726
724
|
})(ClickHouseEngines || {});
|
|
727
725
|
function dropView(name) {
|