This is an automated email from the ASF dual-hosted git repository.
zykkk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 83f5ff7b225 [typo](doc)modify error result of explode_split function.
(#24185)
83f5ff7b225 is described below
commit 83f5ff7b225d64d1322dd222d42cd7990bbbc0af
Author: ZhenchaoXu <[email protected]>
AuthorDate: Wed Sep 27 16:04:18 2023 +0800
[typo](doc)modify error result of explode_split function. (#24185)
---
.../sql-manual/sql-functions/table-functions/explode-split.md | 9 ++-------
.../sql-manual/sql-functions/table-functions/explode-split.md | 3 +--
2 files changed, 3 insertions(+), 9 deletions(-)
diff --git
a/docs/en/docs/sql-manual/sql-functions/table-functions/explode-split.md
b/docs/en/docs/sql-manual/sql-functions/table-functions/explode-split.md
index ae9af43b196..1ccf91c40aa 100644
--- a/docs/en/docs/sql-manual/sql-functions/table-functions/explode-split.md
+++ b/docs/en/docs/sql-manual/sql-functions/table-functions/explode-split.md
@@ -70,18 +70,13 @@ mysql> select k1, e1 from example1 lateral view
explode_split(k2, ',') tmp1 as e
+------+------+
mysql> select k1, e1 from example1 lateral view explode_split(k2, ',') tmp1 as
e1 where k1 = 2 order by k1, e1;
-+------+------+
-| k1 | e1 |
-+------+------+
-| 2 | NULL |
-+------+------+
+Empty set
mysql> select k1, e1 from example1 lateral view explode_split(k2, ',') tmp1 as
e1 where k1 = 3 order by k1, e1;
+------+------+
| k1 | e1 |
+------+------+
| 3 | |
-| 3 | |
+------+------+
mysql> select k1, e1 from example1 lateral view explode_split(k2, ',') tmp1 as
e1 where k1 = 4 order by k1, e1;
@@ -95,9 +90,9 @@ mysql> select k1, e1 from example1 lateral view
explode_split(k2, ',') tmp1 as e
+------+------+
| k1 | e1 |
+------+------+
-| 5 | 1 |
| 5 | 2 |
| 5 | 3 |
+| 5 | 1 |
+------+------+
mysql> select k1, e1 from example1 lateral view explode_split(k2, ',') tmp1 as
e1 where k1 = 6 order by k1, e1;
diff --git
a/docs/zh-CN/docs/sql-manual/sql-functions/table-functions/explode-split.md
b/docs/zh-CN/docs/sql-manual/sql-functions/table-functions/explode-split.md
index faaae733870..64f5b1eee72 100644
--- a/docs/zh-CN/docs/sql-manual/sql-functions/table-functions/explode-split.md
+++ b/docs/zh-CN/docs/sql-manual/sql-functions/table-functions/explode-split.md
@@ -71,7 +71,6 @@ mysql> select k1, e1 from example1 lateral view
explode_split(k2, ',') tmp1 as e
| k1 | e1 |
+------+------+
| 3 | |
-| 3 | |
+------+------+
mysql> select k1, e1 from example1 lateral view explode_split(k2, ',') tmp1 as
e1 where k1 = 4 order by k1, e1;
@@ -85,9 +84,9 @@ mysql> select k1, e1 from example1 lateral view
explode_split(k2, ',') tmp1 as e
+------+------+
| k1 | e1 |
+------+------+
-| 5 | 1 |
| 5 | 2 |
| 5 | 3 |
+| 5 | 1 |
+------+------+
mysql> select k1, e1 from example1 lateral view explode_split(k2, ',') tmp1 as
e1 where k1 = 6 order by k1, e1;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]