peanut-chenzhong opened a new issue, #8034:
URL: https://github.com/apache/hudi/issues/8034

   **_Tips before filing an issue_**
   
   - Have you gone through our [FAQs](https://hudi.apache.org/learn/faq/)?
   
   - Join the mailing list to engage in conversations and get faster support at 
[email protected].
   
   - If you have triaged this as a bug, then file an 
[issue](https://issues.apache.org/jira/projects/HUDI/issues) directly.
   
   **Describe the problem you faced**
   
   A clear and concise description of the problem.
   
   **To Reproduce**
   
   Steps to reproduce the behavior:
   
   1.create table if not exists hudi_table1 (id int,name string,price double)  
using hudi options (type = 'mor',primaryKey = 'id',preCombineField = 'price');
   2.create table if not exists hudi_table2 (id int,name string,price double)  
using hudi options (type = 'mor',primaryKey = 'id',preCombineField = 'price');
   3.set hoodie.parquet.small.file.limit=0;
   4.insert into hudi_table1 select 1,1,1;
   5.insert into hudi_table1 select 2,1,1;
   6.merge into hudi_table2  using (select * from hudi_table1) as b on 
(hudi_table2.id = b.id and hudi_table2.name=b.name) when not matched then 
insert *;
   7.select * from hudi_table2;
   8.delete from hudi_table2 where id=1;
   9.merge into hudi_table2  using (select * from hudi_table1) as b on 
(hudi_table2.id = b.id and hudi_table2.name=b.name) when not matched then 
insert *;
   10select * from hudi_table2;
   
   
   **Expected behavior**
   
   after step 10, where should be two records in hudi_table2, but now we can 
only get one which id=2;
   
   **Environment Description**
   
   * Hudi version :0.14.0
   
   * Spark version :3.3.1
   
   * Hive version :3.1.1
   
   * Hadoop version :
   
   * Storage (HDFS/S3/GCS..) :
   
   * Running on Docker? (yes/no) :
   
   
   **Additional context**
   
   Add any other context about the problem here.
   
   **Stacktrace**
   
   ```Add the stacktrace of the error.```
   
   


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