I created a hive table using
location '/user/hive/test/day=allDataInThisFile'
Hive CLI Query: select * from table;
-> works
HUE_Hive Edditor: used the same query -> works
Now I created Hive table using multiple partitioned directories with
location '/user/hive/test'
Here data is contained in following directory structure:
'/user/hive/test/day=monday'
'/user/hive/test/day=tuesday'
'/user/hive/test/day=wednesday'
Hive CLI Query: select * from table;
-> works
HUE_Hive Edditor: used the same query -> NOT Working
Can someone please let me know what is the issue here?