chore: update app version && changes
This commit is contained in:
parent
18043150be
commit
1f7ede90a4
|
@ -2,7 +2,7 @@
|
||||||
{application, emqx_rule_engine, [
|
{application, emqx_rule_engine, [
|
||||||
{description, "EMQX Rule Engine"},
|
{description, "EMQX Rule Engine"},
|
||||||
% strict semver, bump manually!
|
% strict semver, bump manually!
|
||||||
{vsn, "5.0.16"},
|
{vsn, "5.0.17"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, [emqx_rule_engine_sup, emqx_rule_engine]},
|
{registered, [emqx_rule_engine_sup, emqx_rule_engine]},
|
||||||
{applications, [kernel, stdlib, rulesql, getopt, emqx_ctl]},
|
{applications, [kernel, stdlib, rulesql, getopt, emqx_ctl]},
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
Fixed an issue where the rule engine was unable to access variables exported by `FOREACH` in the `DO` clause.
|
||||||
|
|
||||||
|
Given a payload: `{"date": "2023-05-06", "array": ["a"]}`, as well as the following SQL statement:
|
||||||
|
```
|
||||||
|
FOREACH payload.date as date, payload.array as elem
|
||||||
|
DO date, elem
|
||||||
|
FROM "t/#"
|
||||||
|
```
|
||||||
|
Prior to the fix, the `date` variable exported by `FOREACH` could not be accessed in the `DO` clause of the above SQL, resulting in the following output for the SQL statement:
|
||||||
|
`[{"elem": "a","date": "undefined"}]`.
|
||||||
|
After the fix, the output of the SQL statement is: `[{"elem": "a","date": "2023-05-06"}]`
|
Loading…
Reference in New Issue