@514labs/moose-lib 0.6.440 → 0.6.442

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.
@@ -484,7 +484,7 @@ __export(browserCompatible_exports, {
484
484
  IngestPipeline: () => IngestPipeline,
485
485
  LifeCycle: () => LifeCycle,
486
486
  MaterializedView: () => MaterializedView,
487
- OlapTable: () => OlapTable,
487
+ OlapTable: () => OlapTable2,
488
488
  Sql: () => Sql,
489
489
  SqlResource: () => SqlResource,
490
490
  Stream: () => Stream,
@@ -1250,7 +1250,7 @@ var dlqColumns = [
1250
1250
  // src/dmv2/sdk/olapTable.ts
1251
1251
  var import_node_stream = require("stream");
1252
1252
  var import_node_crypto2 = require("crypto");
1253
- var OlapTable = class extends TypedBase {
1253
+ var OlapTable2 = class extends TypedBase {
1254
1254
  name;
1255
1255
  /** @internal */
1256
1256
  kind = "OlapTable";
@@ -2557,7 +2557,7 @@ var IngestPipeline = class extends TypedBase {
2557
2557
  engine: "MergeTree" /* MergeTree */,
2558
2558
  ...config.version && { version: config.version }
2559
2559
  };
2560
- this.table = new OlapTable(
2560
+ this.table = new OlapTable2(
2561
2561
  name,
2562
2562
  tableConfig,
2563
2563
  this.schema,
@@ -2769,7 +2769,7 @@ var ETLPipeline = class {
2769
2769
 
2770
2770
  // src/dmv2/sdk/materializedView.ts
2771
2771
  function formatTableReference(table) {
2772
- const database = table instanceof OlapTable ? table.config.database : void 0;
2772
+ const database = table instanceof OlapTable2 ? table.config.database : void 0;
2773
2773
  if (database) {
2774
2774
  return `\`${database}\`.\`${table.name}\``;
2775
2775
  }
@@ -2807,7 +2807,7 @@ var MaterializedView = class {
2807
2807
  "Supply the type param T so that the schema is inserted by the compiler plugin."
2808
2808
  );
2809
2809
  }
2810
- const targetTable = options.targetTable instanceof OlapTable ? options.targetTable : new OlapTable(
2810
+ const targetTable = options.targetTable instanceof OlapTable2 ? options.targetTable : new OlapTable2(
2811
2811
  requireTargetTableName(
2812
2812
  options.targetTable?.name ?? options.tableName
2813
2813
  ),
@@ -2902,7 +2902,7 @@ var SqlResource = class {
2902
2902
 
2903
2903
  // src/dmv2/sdk/view.ts
2904
2904
  function formatTableReference2(table) {
2905
- const database = table instanceof OlapTable ? table.config.database : void 0;
2905
+ const database = table instanceof OlapTable2 ? table.config.database : void 0;
2906
2906
  if (database) {
2907
2907
  return `\`${database}\`.\`${table.name}\``;
2908
2908
  }