MCPcopy Create free account
hub / github.com/bytedance/bolt / validateOperatorResult

Function validateOperatorResult

bolt/exec/Driver.cpp:95–105  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93}
94
95void 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
107thread_local DriverThreadContext* driverThreadCtx{nullptr};
108

Callers 1

runInternalMethod · 0.85

Calls 2

validateMethod · 0.45
whatMethod · 0.45

Tested by

no test coverage detected