MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / collectStreams

Method collectStreams

src/dsql/ExprNodes.cpp:428–438  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

426}
427
428void ExprNode::collectStreams(SortedStreamList& streamList) const
429{
430 NodeRefsHolder holder;
431 getChildren(holder, false);
432
433 for (auto i : holder.refs)
434 {
435 if (*i)
436 (*i)->collectStreams(streamList);
437 }
438}
439
440bool ExprNode::computable(CompilerScratch* csb, StreamType stream,
441 bool allowOnlyCurrentStream, ValueExprNode* /*value*/)

Callers 3

computableMethod · 0.45
pass1Method · 0.45
decomposeMethod · 0.45

Calls 2

existMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected