I have table which has 12 Mill rows, when I try to query the database with below sql it is doing the full table scan.

Select * from abc_tbl where rec_stat='C'

This column “rec_stat” having the bit map index even thus it is doing full table scan. Any suggestions to avoid the full table scan.