Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): fix null check #3426

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/en_US/edgex/edgex_rule_engine_command.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ curl -X POST \
-H 'Content-Type: application/json' \
-d '{
"id": "rule2",
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE int8 != nil GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE isNull(int8) = false GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"actions": [
{
"rest": {
Expand All @@ -278,7 +278,7 @@ The procedure is the same as the previous step. Use the following configuration

```shell
{
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE int8 != nil GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE isNull(int8) = false GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"actions": [
{
"mqtt": {
Expand Down
4 changes: 2 additions & 2 deletions docs/zh_CN/edgex/edgex_rule_engine_command.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ curl -X POST \
-H 'Content-Type: application/json' \
-d '{
"id": "rule2",
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE int8 != nil GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE isNull(int8) = false GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"actions": [
{
"rest": {
Expand All @@ -241,7 +241,7 @@ curl -X POST \

```shell
{
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE int8 != nil GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"sql": "SELECT avg(int8) AS avg_int8 FROM demo WHERE isNull(int8) = false GROUP BY TUMBLINGWINDOW(ss, 20) HAVING avg(int8) > 0",
"actions": [
{
"mqtt": {
Expand Down
Loading