sasat 0.21.8 → 0.21.9
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/cli/cli.cjs +2 -0
- package/dist/cli/cli.mjs +2 -0
- package/package.json +1 -1
package/dist/cli/cli.cjs
CHANGED
|
@@ -3564,6 +3564,8 @@ const makeJoinConditionThrowExpressions = (cv) => {
|
|
|
3564
3564
|
const makeThrowExpressions = (condition) => {
|
|
3565
3565
|
if (condition.kind === "custom")
|
|
3566
3566
|
return [];
|
|
3567
|
+
if (condition.kind === "isNull")
|
|
3568
|
+
return [makeJoinConditionThrowExpressions(condition.value)];
|
|
3567
3569
|
if (condition.operator === "BETWEEN") {
|
|
3568
3570
|
return [
|
|
3569
3571
|
makeJoinConditionThrowExpressions(condition.left),
|
package/dist/cli/cli.mjs
CHANGED
|
@@ -3539,6 +3539,8 @@ const makeJoinConditionThrowExpressions = (cv) => {
|
|
|
3539
3539
|
const makeThrowExpressions = (condition) => {
|
|
3540
3540
|
if (condition.kind === "custom")
|
|
3541
3541
|
return [];
|
|
3542
|
+
if (condition.kind === "isNull")
|
|
3543
|
+
return [makeJoinConditionThrowExpressions(condition.value)];
|
|
3542
3544
|
if (condition.operator === "BETWEEN") {
|
|
3543
3545
|
return [
|
|
3544
3546
|
makeJoinConditionThrowExpressions(condition.left),
|