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
   
   
![image](https://user-images.githubusercontent.com/32875366/158310730-b8c36b14-b019-4fd1-a298-93b31c862cb0.png)
   
   and the source code is 
   
![image](https://user-images.githubusercontent.com/32875366/158310842-7247b818-231e-42a3-b237-5645ea0acefb.png)
   
   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]


Reply via email to