I have created a table T , which has an index created on a column C (btree index) , but when i run the select query this index is not being used.
Ex:
Explain select * from T where C= xxx
This searches in all the segments sequentially , without considering the index which i have created.
I have used the following flags
enable_seqscan = off
enable_bitmapscan = off
enable_indexscan = on
Am I missing anything?Kindly explain?
Thanks Ganesh.R