@polyglot-sql/sdk 0.3.3 → 0.3.4

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/index.d.cts CHANGED
@@ -2566,6 +2566,10 @@ declare type CreateTable = {
2566
2566
  * Whether this is a SHALLOW CLONE (Databricks/Delta Lake)
2567
2567
  */
2568
2568
  shallow_clone: boolean;
2569
+ /**
2570
+ * Whether this is an explicit DEEP CLONE (Databricks/Delta Lake)
2571
+ */
2572
+ deep_clone: boolean;
2569
2573
  /**
2570
2574
  * Leading comments before the statement
2571
2575
  */
package/dist/index.d.ts CHANGED
@@ -2566,6 +2566,10 @@ declare type CreateTable = {
2566
2566
  * Whether this is a SHALLOW CLONE (Databricks/Delta Lake)
2567
2567
  */
2568
2568
  shallow_clone: boolean;
2569
+ /**
2570
+ * Whether this is an explicit DEEP CLONE (Databricks/Delta Lake)
2571
+ */
2572
+ deep_clone: boolean;
2569
2573
  /**
2570
2574
  * Leading comments before the statement
2571
2575
  */
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@polyglot-sql/sdk",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "SQL dialect translator powered by WebAssembly",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",