| 74 | } |
| 75 | |
| 76 | StringVal NullLiteral::GetStringValInterpreted( |
| 77 | ScalarExprEvaluator* eval, const TupleRow* row) const { |
| 78 | DCHECK(type_.IsStringType()) << type_; |
| 79 | return StringVal::null(); |
| 80 | } |
| 81 | |
| 82 | TimestampVal NullLiteral::GetTimestampValInterpreted( |
| 83 | ScalarExprEvaluator* eval, const TupleRow* row) const { |
nothing calls this directly
no test coverage detected