From eaa4e331705d621f66ce1d2f22e2dd208d838125 Mon Sep 17 00:00:00 2001 From: YANGDB Date: Wed, 13 Sep 2023 12:33:15 -0700 Subject: [PATCH] update readme doc Signed-off-by: YANGDB --- ppl-spark-integration/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppl-spark-integration/README.md b/ppl-spark-integration/README.md index 8059de40b..a497fcd6d 100644 --- a/ppl-spark-integration/README.md +++ b/ppl-spark-integration/README.md @@ -236,7 +236,7 @@ The next samples of PPL queries are currently supported: **Filters With Logical Conditions** - `source = table | where c = 'test' AND a = 1 | fields a,b,c` - `source = table | where c != 'test' OR a > 1 | fields a,b,c` - - `source = table | where c != 'test' OR a > 1 | fields a,b,c` + - `source = table | where c = 'test' NOT a > 1 | fields a,b,c` **Aggregations** - `source = table | stats avg(a) `