blob: 442357a706ed0a65f689d6947e88fc9a5bb3d516 [file] [log] [blame]
create external table ice_parquet(
strcol string,
intcol integer
) partitioned by (pcol int)
stored by iceberg;
explain LOAD DATA LOCAL INPATH '../../data/files/parquet_partition' OVERWRITE INTO TABLE ice_parquet;
LOAD DATA LOCAL INPATH '../../data/files/parquet_partition' OVERWRITE INTO TABLE ice_parquet;
select * from ice_parquet order by intcol;
CREATE TABLE ice_avro (
number int,
first_name string)
stored by iceberg
STORED AS AVRO;
explain LOAD DATA LOCAL INPATH '../../data/files/doctors.avro' OVERWRITE INTO TABLE ice_avro;
LOAD DATA LOCAL INPATH '../../data/files/doctors.avro' OVERWRITE INTO TABLE ice_avro;
select * from ice_avro order by number;
CREATE TABLE ice_orc (
p_partkey int,
p_name string,
p_mfgr string,
p_brand string,
p_type string,
p_size int,
p_container string,
p_retailprice double,
p_comment string
)
stored by iceberg
STORED AS ORC;
explain LOAD DATA LOCAL INPATH '../../data/files/part.orc' OVERWRITE INTO TABLE ice_orc;
LOAD DATA LOCAL INPATH '../../data/files/part.orc' INTO TABLE ice_orc;
select * from ice_orc order by p_partkey;