能否支持 array 中嵌套 struct #50374
Unanswered
y528663036
asked this question in
A - General / Q&A
Replies: 1 comment
-
这个hive支持 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
CREATE TABLE test_nested (
id INT,
nested_array ARRAY<STRUCT<name STRING, age INT>>
)
DUPLICATE KEY(id)
DISTRIBUTED BY HASH(id) BUCKETS 10;
我们遇到一个问题,需要通过array 中嵌套 struct的方式来实现,请问目前doris是否有版本能够支持这种实现

我现在用的这个版本(Doris version doris-2.1.2-rc04-b130df2488)创建以上结构的表有报错
Beta Was this translation helpful? Give feedback.
All reactions