@ronin/compiler 0.13.1-leo-ron-1071-experimental-289 → 0.13.1-leo-ron-1071-experimental-290
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.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1748,13 +1748,13 @@ var transformMetaQuery = (models, dependencyStatements, statementParams, query)
|
|
1748
1748
|
const withStatement = handleWith(
|
1749
1749
|
models,
|
1750
1750
|
{ ...existingModel, tableAlias },
|
1751
|
-
|
1751
|
+
null,
|
1752
1752
|
trigger.filter
|
1753
1753
|
);
|
1754
1754
|
statementParts.push("WHEN", `(${withStatement})`);
|
1755
1755
|
}
|
1756
1756
|
const effectStatements = trigger.effects.map((effectQuery) => {
|
1757
|
-
return compileQueryInput(effectQuery, models,
|
1757
|
+
return compileQueryInput(effectQuery, models, null, {
|
1758
1758
|
returning: false,
|
1759
1759
|
parentModel: existingModel
|
1760
1760
|
}).main.statement;
|
package/package.json
CHANGED