| 286 | } |
| 287 | |
| 288 | StringVal Literal::GetStringValInterpreted( |
| 289 | ScalarExprEvaluator* eval, const TupleRow* row) const { |
| 290 | DCHECK(type_.IsStringType()) << type_; |
| 291 | StringVal result; |
| 292 | value_.string_val.ToStringVal(&result); |
| 293 | return result; |
| 294 | } |
| 295 | |
| 296 | DecimalVal Literal::GetDecimalValInterpreted( |
| 297 | ScalarExprEvaluator* eval, const TupleRow* row) const { |
nothing calls this directly
no test coverage detected