blob: 61d1bc603fa16a9658b5eb17fe038f8793669c09 [file] [log] [blame]
-- SORT_QUERY_RESULTS
-- verify that we can actually read avro files
CREATE TABLE doctors (
number int,
first_name string,
last_name string)
STORED AS AVRO;
DESCRIBE doctors;
LOAD DATA LOCAL INPATH '../../data/files/doctors.avro' INTO TABLE doctors;
SELECT * FROM doctors;