blob: 898c5b305dfb37907b4612243c64f3865556355b [file] [log] [blame]
set hive.vectorized.execution.enabled=false;
-- this test creates a Parquet table from a structure with an unannotated
-- repeated structure of (x,y) structs
CREATE TABLE parquet_array_of_unannotated_groups (
list_of_points ARRAY<STRUCT<x: FLOAT, y: FLOAT>>
) STORED AS PARQUET;
LOAD DATA LOCAL INPATH '../../data/files/UnannotatedListOfGroups.parquet'
OVERWRITE INTO TABLE parquet_array_of_unannotated_groups;
SELECT * FROM parquet_array_of_unannotated_groups;
DROP TABLE parquet_array_of_unannotated_groups;