I have a hive table partitioned by one date column name datetime
If I do a query like
select *
from table
where datetime = "2021-05-01"
and id in (1,2)
with extra and id in (1,2)
condition, will hive do a full table search?
Is it possible to determine it by explain
result?