This is the hive-sql:
insert into my_orc_table_25 select * from my_orc_table limit 5;
And these are the schemas:
CREATE TABLE my_orc_table (
id INT,
name STRING
)
STORED AS ORC;
CREATE TABLE my_orc_table_25 as select id,name from my_orc_table limit 25;
My env : hive-3.1.0,tez-0.10.2
I tried to modify the following configuration items, but it didn't work
set hive.compute.query.using.stats=false;
set hive.stats.fetch.column.stats=false;
set hive.stats.fetch.partition.stats=false;
set hive.groupby.skewindata=false;
set hive.exec.dynamic.partition=false;