* affectedComponent This is the only method in this class where
* IndexWhereVisitor is actually instantiated and invoked
*/
private void processWhereForComponent(Component affectedComponent,
Expression whereCompExpression) {
final IndexWhereVisitor whereVisitor = new IndexWhereVisitor(affectedComponent, _schema,
_pq.getTan());
whereCompExpression.accept(whereVisitor);
attachWhereClause(affectedComponent, whereVisitor.getSelectOperator());
}