Skip to content

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

Merged
zclllyybb merged 3 commits intoapache:masterfrom
linrrzqqq:json-each
Mar 30, 2026
Merged

[Feature](func) Support table function json_each, json_each_text#3422
zclllyybb merged 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)
```
@linrrzqqq linrrzqqq deployed to Production March 30, 2026 12:27 — with GitHub Actions Active
@zclllyybb zclllyybb merged commit b1a80a4 into apache:master Mar 30, 2026
1 of 2 checks passed
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.

2 participants