Skip to content

[Feature](func) Support table function json_each, json_each_text#3422

Open
linrrzqqq wants to merge 3 commits intoapache:masterfrom
linrrzqqq:json-each
Open

[Feature](func) Support table function json_each, json_each_text#3422
linrrzqqq wants to merge 3 commits intoapache:masterfrom
linrrzqqq:json-each

Conversation

@linrrzqqq
Copy link
Copy Markdown
Contributor

Versions

  • dev
  • 4.x
  • 3.x
  • 2.1

Languages

  • Chinese
  • English

Docs Checklist

  • Checked by AI
  • Test Cases Built

zclllyybb pushed a commit to apache/doris that referenced this pull request Mar 27, 2026
)

doc: apache/doris-website#3422

```text
Doris> SELECT k, v
    -> FROM (SELECT 1) dummy
    -> LATERAL VIEW json_each('{"a":"foo","b":"bar"}') t AS k, v;
+------+-------+
| k    | v     |
+------+-------+
| a    | "foo" |
| b    | "bar" |
+------+-------+
2 rows in set (0.01 sec)

Doris> SELECT k, v
    -> FROM (SELECT 1) dummy
    -> LATERAL VIEW json_each_text('{"a":"foo","b":"bar"}') t AS k, v;
+------+------+
| k    | v    |
+------+------+
| a    | foo  |
| b    | bar  |
+------+------+
2 rows in set (0.01 sec)
```
github-actions bot pushed a commit to apache/doris that referenced this pull request Mar 27, 2026
)

doc: apache/doris-website#3422

```text
Doris> SELECT k, v
    -> FROM (SELECT 1) dummy
    -> LATERAL VIEW json_each('{"a":"foo","b":"bar"}') t AS k, v;
+------+-------+
| k    | v     |
+------+-------+
| a    | "foo" |
| b    | "bar" |
+------+-------+
2 rows in set (0.01 sec)

Doris> SELECT k, v
    -> FROM (SELECT 1) dummy
    -> LATERAL VIEW json_each_text('{"a":"foo","b":"bar"}') t AS k, v;
+------+------+
| k    | v    |
+------+------+
| a    | foo  |
| b    | bar  |
+------+------+
2 rows in set (0.01 sec)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant