| 93 | } |
| 94 | |
| 95 | void validateOperatorResult(RowVectorPtr& result, Operator& op) { |
| 96 | try { |
| 97 | result->validate({}); |
| 98 | } catch (const std::exception& e) { |
| 99 | BOLT_FAIL( |
| 100 | "Output validation failed for [operator: {}, plan node ID: {}]: {}", |
| 101 | op.operatorType(), |
| 102 | op.planNodeId(), |
| 103 | e.what()); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | thread_local DriverThreadContext* driverThreadCtx{nullptr}; |
| 108 |
no test coverage detected