xuzifu666 commented on issue #8123:
URL: https://github.com/apache/hudi/issues/8123#issuecomment-1475127396

   @jonvex hi,we can not use sql like :
   merge into hudi_test.test_hudi05 as target
   using (select '3' as uuid, 'succee' as name, 22 as age, 1212 as ts, 'wo' as 
partition) as source
   on target.uuid = source.uuid
   when matched then update set target.age = max(target.age, source.age)
   when not matched then insert * ;
   
   target.age = max(target.age, source.age) this function or other method can 
implement it?


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

Reply via email to