| 311 | } |
| 312 | |
| 313 | TimestampVal Literal::GetTimestampValInterpreted( |
| 314 | ScalarExprEvaluator* eval, const TupleRow* row) const { |
| 315 | DCHECK_EQ(type_.type, TYPE_TIMESTAMP) << type_; |
| 316 | TimestampVal result; |
| 317 | value_.timestamp_val.ToTimestampVal(&result); |
| 318 | return result; |
| 319 | } |
| 320 | |
| 321 | DateVal Literal::GetDateValInterpreted( |
| 322 | ScalarExprEvaluator* eval, const TupleRow* row) const { |
nothing calls this directly
no test coverage detected