1043038630 opened a new issue, #8426:
URL: https://github.com/apache/iceberg/issues/8426

   ### Apache Iceberg version
   
   1.1.0
   
   ### Query engine
   
   Spark
   
   ### Please describe the bug 🐞
   
   exec insert into (hive on spark),no erro log,but table no data. if use set 
hive.execution.engine=mr; can insert into table!
   
   this is log:
   
   1. 
   set hive.execution.engine = mr;
   
   SELECT  *  from iceberg_test2;
   
   +--------------+----------------+
   | student1.id | student1.name | 
   +--------------+----------------+
   | 赵匡胤| 20 |
   | 赵普| 26 |
   | 朱元璋| 25 |
   +--------------+----------------+
   
   2.
   insert into table iceberg_test2 values('李世民',60);
   SELECT  *  from iceberg_test2;
   +--------------+----------------+
   | student1.id | student1.name | 
   +--------------+----------------+
   | 赵匡胤| 20 |
   | 赵普| 26 |
   | 朱元璋| 25 |
   | 李世民| 60 |
   +--------------+----------------+
   
   3.
   set hive.execution.engine = spark;
   
   insert into table iceberg_test2 values('李渊',80); -- no error log 
   
   SELECT  *  from iceberg_test2;
   
   +--------------+----------------+
   | student1.id | student1.name | 
   +--------------+----------------+
   | 赵匡胤| 20 |
   | 赵普| 26 |
   | 朱元璋| 25 |
   | 李世民| 60 |
   +--------------+----------------+
   
   4. look HDFS files  Existed
   
   
   
   
   


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