return Util.createMatchAllQuery(propName, version);
}
public Object visit(PropertyValueImpl node, Object data) throws Exception {
if (data instanceof ComparisonImpl) {
ComparisonImpl comp = ((ComparisonImpl) data);
int operator = comp.getOperator();
Value v = (Value) ((StaticOperandImpl) comp.getOperand2()).accept(this, data);
String stringValue = stringValueOf(v);
String propName = npResolver.getJCRName(node.getPropertyQName());
String text = FieldNames.createNamedValue(propName, stringValue);
switch (operator) {
case OPERATOR_EQUAL_TO: