MCPcopy Create free account
hub / github.com/apache/impala / Open

Method Open

be/src/exec/scan-node.cc:187–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187Status ScanNode::Open(RuntimeState* state) {
188 RETURN_IF_ERROR(ExecNode::Open(state));
189
190 // Open Runtime filter expressions.
191 for (FilterContext& ctx : filter_ctxs_) {
192 RETURN_IF_ERROR(ctx.expr_eval->Open(state));
193 }
194 return Status::OK();
195}
196
197void ScanNode::Close(RuntimeState* state) {
198 if (is_closed()) return;

Callers

nothing calls this directly

Calls 11

OKFunction · 0.85
maxFunction · 0.85
minFunction · 0.85
PrintIdFunction · 0.85
is_mt_fragmentMethod · 0.80
resetMethod · 0.65
idMethod · 0.45
InstantiateMethod · 0.45
runtime_profileMethod · 0.45
LoadMethod · 0.45

Tested by

no test coverage detected