I created external hive table like this.
CREATE EXTERNAL TABLE parquet_emp_parquet(id string, name string, city string) STORED AS PARQUET LOCATION 'wasb://[email protected]/empparquet';
but i got output,
+-------+-------+-------+--+
| id | name | city |
+-------+-------+-------+--+
| NULL | NULL | NULL |
| NULL | NULL | NULL |
| NULL | NULL | NULL |
+-------+-------+-------+--+