hudi-bot opened a new issue, #16806:
URL: https://github.com/apache/hudi/issues/16806
This INSERT statement fails on Hudi table while succeeds on parquet table in
Spark 3.5.
{code:java}
CREATE TABLE hudi_table (
id int,
dt string,
name string,
price double,
ts long
) using hudi
tblproperties (
type = 'mor',
primaryKey = 'id'
)
location '/tmp/path'
INSERT INTO hudi_table (id, dt, ts)
select id, dt, ts from (SELECT 1 as id, '2025-01-04' as dt, 4000 as ts){code}
## JIRA info
- Link: https://issues.apache.org/jira/browse/HUDI-8912
- Type: Bug
- Fix version(s):
- 1.1.0
--
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]