| 599 | } |
| 600 | |
| 601 | string HiveUdfCall::DebugString() const { |
| 602 | stringstream out; |
| 603 | out << "HiveUdfCall(hdfs_location=" << fn_.hdfs_location |
| 604 | << " classname=" << fn_.scalar_fn.symbol << " " |
| 605 | << ScalarExpr::DebugString() << ")"; |
| 606 | return out.str(); |
| 607 | } |
| 608 | |
| 609 | BooleanVal HiveUdfCall::GetBooleanValInterpreted( |
| 610 | ScalarExprEvaluator* eval, const TupleRow* row) const { |
nothing calls this directly
no test coverage detected