Initial-neko opened a new issue #3814:
URL: https://github.com/apache/iceberg/issues/3814


   now:
   ```
   +----+-------+-------+
   | id | data1 | data2 |
   +----+-------+-------+
   |  1 |     2 |     3 |
   |  2 |     3 |     4 |
   +----+-------+-------+
   ```
   
   insert INTO table(id,data1)values(1,3)
   
   ```
   result:
   +----+-------+-------+
   | id | data1 | data2 |
   +----+-------+-------+
   |  1 |     3 |     null |
   |  2 |     3 |     4 |
   +----+-------+-------+
   ```
   
   However, if I want to keep other fields unchanged and just update the 
specified field, I need to read this row of data. 
   Can someone give me some advice,How can I read it gracefully? Thanks!
   insert INTO table(id,data1)values(1,3)
   result like that
   ```
   +----+-------+-------+
   | id | data1 | data2 |
   +----+-------+-------+
   |  1 |     3 |     3 |
   |  2 |     3 |     4 |
   +----+-------+-------+
   ```
   
   At present, my idea is to build a read request somewhere, but I don't know 
where to build such a request
   
   


-- 
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]

Reply via email to