[typo](doc)modify error result of explode_split function. (#24185)
This commit is contained in:
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user