网站提供示例:https://doris.apache.org/zh-CN/docs/sql-manual/sql-functions/table-functions/explode-variant-array
网站提供示例:https://doris.apache.org/zh-CN/docs/sql-manual/sql-functions/table-functions/explode-variant-array
这个不是使用函数报错,是建表中这两个配置项在新版本去掉了,我们去改一下。您可以用以下建表测试:
CREATE TABLE simple_nested_test
(
k
bigint NULL,
v
variant NULL
) ENGINE=OLAP
DUPLICATE KEY(k
)
DISTRIBUTED BY HASH(k
) BUCKETS 8
PROPERTIES (
"replication_allocation" = "tag.location.default: 1"
);