*
* @param inSelectClause will be true if this method got called while parsing the select or values clause
* If in select or values clause, we do not want to allow boolean values.
*/
final public ValueNode andExpression(ValueNode farLeftOperand, boolean inSelectClause) throws ParseException, StandardException {
Token tok = null;
ValueNode test;
if (getToken(1).kind == NOT && !(getToken(2).kind == PERIOD ||
getToken(2).kind == DOUBLE_COLON)) {
tok = jj_consume_token(NOT);
} else {