# Create parquet Impala table temp with a column a
# write parquet file using streaming applicaiton/ map reduce job call parquet schema for that
#Impala
select a from default.temp
works and returns data
#hive
select a from default.temp
returns null because it tries to reference column name from parquet schema I think and it doesn't match.
Is there a way to force hive to read column name from metastore instead of parquet schema ?