I am not extremely familiar with the process that takes place when an index is created on a table. However, if I have partitioned tables that have indexes on them and had an index on the master table; if I drop the index on the master table in hopes that the query planner only scans partitioned tables in the date range specified (tables are partitioned by year and month) and I run a query to get data for a range, the query planner is still running an index scan on all the partitioned tables instead of just the ones in the range specified.
Does dropping the index from the table also remove the indexes from the data? If I drop the index on the master table, should that not fix the partition elimination issues I am currently having?