| 52 | TupleCacheNode::~TupleCacheNode() = default; |
| 53 | |
| 54 | static bool TupleCacheVerificationEnabled(RuntimeState* state) { |
| 55 | DCHECK(state != nullptr); |
| 56 | return state->query_options().enable_tuple_cache_verification; |
| 57 | } |
| 58 | |
| 59 | Status TupleCacheNode::Prepare(RuntimeState* state) { |
| 60 | RETURN_IF_ERROR(ExecNode::Prepare(state)); |
no outgoing calls
no test coverage detected