/**
* Oracle doesn't actually support booolean expressions, except in
* a few places. Turn the boolean into an int using a CASE statement
*/
public Expression booleanExpressionToSimpleExpression(Expression expression) {
return new BooleanToIntegerCaseExpression(expression);
}