YannByron commented on pull request #4774: URL: https://github.com/apache/hudi/pull/4774#issuecomment-1040337118
@todd5167 I create a mor table, and insert some data, but i can reproduce this issues. can you give the complete sqls please? the codes that i test like this: ``` create table hudi_mor_tbl (uuid long, name string, order_date string) using hudi partitioned by (order_date) tblproperties (type='mor'); insert into hudi_mor_tbl values (5,'todd', '20220209'); insert into hudi_mor_tbl partition(order_date = '20220210') values (6,'todd'); insert into hudi_mor_tbl_rt partition(order_date = '20220210') values (7,'todd'); -- this use the rt table. ``` -- 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: commits-unsubscr...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org