@polyglot-sql/sdk 0.3.0 → 0.3.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/cdn/polyglot.esm.js +1641 -1641
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/polyglot_sql_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2614,6 +2614,17 @@ declare type CreateTable = {
|
|
|
2614
2614
|
* ClickHouse: UUID 'xxx' clause after table name
|
|
2615
2615
|
*/
|
|
2616
2616
|
uuid?: string | null;
|
|
2617
|
+
/**
|
|
2618
|
+
* WITH PARTITION COLUMNS (col_name col_type, ...) — currently used by BigQuery
|
|
2619
|
+
* for hive-partitioned external tables. Not dialect-prefixed since the syntax
|
|
2620
|
+
* could appear in other engines.
|
|
2621
|
+
*/
|
|
2622
|
+
with_partition_columns?: Array<ColumnDef>;
|
|
2623
|
+
/**
|
|
2624
|
+
* WITH CONNECTION `project.region.connection` — currently used by BigQuery
|
|
2625
|
+
* for external tables that reference a Cloud Resource connection.
|
|
2626
|
+
*/
|
|
2627
|
+
with_connection?: TableRef | null;
|
|
2617
2628
|
};
|
|
2618
2629
|
|
|
2619
2630
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2614,6 +2614,17 @@ declare type CreateTable = {
|
|
|
2614
2614
|
* ClickHouse: UUID 'xxx' clause after table name
|
|
2615
2615
|
*/
|
|
2616
2616
|
uuid?: string | null;
|
|
2617
|
+
/**
|
|
2618
|
+
* WITH PARTITION COLUMNS (col_name col_type, ...) — currently used by BigQuery
|
|
2619
|
+
* for hive-partitioned external tables. Not dialect-prefixed since the syntax
|
|
2620
|
+
* could appear in other engines.
|
|
2621
|
+
*/
|
|
2622
|
+
with_partition_columns?: Array<ColumnDef>;
|
|
2623
|
+
/**
|
|
2624
|
+
* WITH CONNECTION `project.region.connection` — currently used by BigQuery
|
|
2625
|
+
* for external tables that reference a Cloud Resource connection.
|
|
2626
|
+
*/
|
|
2627
|
+
with_connection?: TableRef | null;
|
|
2617
2628
|
};
|
|
2618
2629
|
|
|
2619
2630
|
/**
|
|
Binary file
|