| 42 | } |
| 43 | |
| 44 | string AndPredicate::DebugString() const { |
| 45 | stringstream out; |
| 46 | out << "AndPredicate(" << ScalarExpr::DebugString() << ")"; |
| 47 | return out.str(); |
| 48 | } |
| 49 | |
| 50 | // (<> || true) is true, (false || NULL) is NULL |
| 51 | BooleanVal OrPredicate::GetBooleanValInterpreted( |
nothing calls this directly
no test coverage detected