@polyglot-sql/sdk 0.3.7 → 0.3.8
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 +1617 -1617
- package/dist/index.d.cts +16 -0
- package/dist/index.d.ts +16 -0
- package/dist/polyglot_sql_wasm_bg.wasm +0 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -4310,6 +4310,8 @@ declare type Expression = {
|
|
|
4310
4310
|
"put": PutStmt;
|
|
4311
4311
|
} | {
|
|
4312
4312
|
"stage_reference": StageReference;
|
|
4313
|
+
} | {
|
|
4314
|
+
"try_catch": TryCatch;
|
|
4313
4315
|
} | {
|
|
4314
4316
|
"alias": Alias;
|
|
4315
4317
|
} | {
|
|
@@ -13640,6 +13642,20 @@ declare type TryBase64DecodeString = {
|
|
|
13640
13642
|
alphabet: Expression | null;
|
|
13641
13643
|
};
|
|
13642
13644
|
|
|
13645
|
+
/**
|
|
13646
|
+
* T-SQL TRY/CATCH block.
|
|
13647
|
+
*/
|
|
13648
|
+
declare type TryCatch = {
|
|
13649
|
+
/**
|
|
13650
|
+
* Statements inside BEGIN TRY ... END TRY.
|
|
13651
|
+
*/
|
|
13652
|
+
try_body: Array<Expression>;
|
|
13653
|
+
/**
|
|
13654
|
+
* Statements inside BEGIN CATCH ... END CATCH, when present.
|
|
13655
|
+
*/
|
|
13656
|
+
catch_body?: Array<Expression> | null;
|
|
13657
|
+
};
|
|
13658
|
+
|
|
13643
13659
|
/**
|
|
13644
13660
|
* TryToDecfloat
|
|
13645
13661
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -4310,6 +4310,8 @@ declare type Expression = {
|
|
|
4310
4310
|
"put": PutStmt;
|
|
4311
4311
|
} | {
|
|
4312
4312
|
"stage_reference": StageReference;
|
|
4313
|
+
} | {
|
|
4314
|
+
"try_catch": TryCatch;
|
|
4313
4315
|
} | {
|
|
4314
4316
|
"alias": Alias;
|
|
4315
4317
|
} | {
|
|
@@ -13640,6 +13642,20 @@ declare type TryBase64DecodeString = {
|
|
|
13640
13642
|
alphabet: Expression | null;
|
|
13641
13643
|
};
|
|
13642
13644
|
|
|
13645
|
+
/**
|
|
13646
|
+
* T-SQL TRY/CATCH block.
|
|
13647
|
+
*/
|
|
13648
|
+
declare type TryCatch = {
|
|
13649
|
+
/**
|
|
13650
|
+
* Statements inside BEGIN TRY ... END TRY.
|
|
13651
|
+
*/
|
|
13652
|
+
try_body: Array<Expression>;
|
|
13653
|
+
/**
|
|
13654
|
+
* Statements inside BEGIN CATCH ... END CATCH, when present.
|
|
13655
|
+
*/
|
|
13656
|
+
catch_body?: Array<Expression> | null;
|
|
13657
|
+
};
|
|
13658
|
+
|
|
13643
13659
|
/**
|
|
13644
13660
|
* TryToDecfloat
|
|
13645
13661
|
*/
|
|
Binary file
|