Zależy od używanej wersji, ale miałem ten sam problem i ->distinct() działał dla mnie.
Doctrine_Query::create()
->select('rec.city')->distinct()
->from('Records rec')
->where("rec.state = '$state'")
->execute();