HelloGithup opened a new issue #5044:
URL: https://github.com/apache/hudi/issues/5044
**Environment Description**
* Hudi version :
0.10.0
* flink version :
1.13.5
* Hive version :
1.2.2
* Hadoop version :
2.7.3
**Describe the problem**
I create a table at flink sql-client,the DDL is
```
CREATE TABLE IF NOT EXISTS `olap_consultation_record_test`(
`patient_id` string,
`diagnosis_consultation_corrected` ARRAY<ROW<diagnosis_code
string,diagnosis_name string>>
)
WITH (
'connector'='hudi',
'table.type' = 'MERGE_ON_READ',
'path' =
'hdfs://newfyyy/user/hive/warehouse/shuiqing_test.db/olap_consultation_record_test',
'hoodie.datasource.write.recordkey.field'='patient_id',
'changelog.enabled'='true'
);
```
I can write some data to the table, but when I want to read date from the
table, there is a problem

and the source code is

I want to know if hudi 0.10.0 support complex data type like
ARRAY<ROW<....>>,
if not, when it could be supported
thank you
@yanghua I'm the one asking questions on the planet of knowledge about
multiset
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]