【已解决】请教 selectdb是否支持 struct 列表 array<struct<"key1",value1,"key2",value2>>

Viewed 59

https://doris.apache.org/docs/sql-manual/sql-functions/struct-functions/struct
https://doris.apache.org/docs/sql-manual/sql-functions/array-functions/array

您好,根据文档的描述,了解到 structarray

其中 struct 结构已经定义:
image.png
查询也正常

select 
	order_id ,
named_struct('scene',scene,'payment_status',payment_status,'payment_pay_id',payment_pay_id,'payment_refund_id',payment_refund_id) as info 
from 
	parking_ods.ord_order_pay_log 

image.png

我目前考虑定义这种结构 array<struct<"key1",value1,"key2",value2>>
在原named_struct 结果之外通过array 进行接收,执行结果不正确

select 
	order_id ,
	array(named_struct('scene',scene,'payment_status',payment_status,'payment_pay_id',payment_pay_id,'payment_refund_id',payment_refund_id)) as info 
from 
	parking_ods.ord_order_pay_log

报错信息:

1105 - errCode = 2, detailMessage = No matching function with signature: array(STRUCT).

array 方法的考虑过collect_list 替代,但结果一样的No matching function with signature:

请教各位老师们,selectdb是否支持 struct 列表?或者我的用法不正确

3 Answers

这边 Doris 版本是多少?经测试, doris2.1.1 可以查到,建议升级下。
image.png

你好,可以加vx详细看下: amorynan

那有可能是版本不正确,我们用的是k8s 最新的版本,2.0.3