deepakpanda93 commented on issue #16806: URL: https://github.com/apache/hudi/issues/16806#issuecomment-4855635600
This should be resolved as of Hudi 1.0.1. Subset-column INSERT for Spark 3.5 was added in HUDI-8898 / [#12692](https://github.com/apache/hudi/pull/12692). The analysis rule (HoodieSpark35Analysis) handles any INSERT with a user-specified column list by resolving the query's output to the table columns by name and padding the unspecified columns — this applies to a SELECT … FROM source as well as VALUES, so your INSERT INTO hudi_table (id, dt, ts) select … from (…) case is covered by the same path. (The earlier column-specified INSERT support is HUDI-7949 [#11568], 1.0.0.) Could you retest your exact statement on 1.1.x? If it works we'll close this out; if the SELECT … FROM variant still fails (the merged tests covered VALUES), please share the error and we'll add a targeted fix + test. Thanks! -- 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]
