moonService opened a new issue, #5883:
URL: https://github.com/apache/iceberg/issues/5883
### Query engine
flink
### Question
I tried the following:
`CREATE TABLE source_part_1 ( `
`columns...`
`PRIMARY KEY (pk) NOT ENFORCED`
`) WITH ( `
`connectinfo... `
`);`
`CREATE TABLE source_part_2 (`
`columns...`
`PRIMARY KEY (pk) NOT ENFORCED`
`) WITH (`
`connectinfo...`
`);`
`CREATE TABLE iceberg_table (`
`part_1_columns...`
`part_2_columns...`
`PRIMARY KEY (pk) NOT ENFORCED`
`) WITH (`
`connectinfo...`
`);`
`insert into iceberg_table (part_1_columns...) select part_1_columns from
source_part_1;`
`insert into iceberg_table (part_2_columns...) select part_2_columns from
source_part_2;`
but iceberg can not just update part fields ,only can update by line,How can
I solve this problem?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]