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

Method findDependentFromStreams

src/dsql/ExprNodes.cpp:455–466  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453}
454
455void ExprNode::findDependentFromStreams(const CompilerScratch* csb,
456 StreamType currentStream, SortedStreamList* streamList)
457{
458 NodeRefsHolder holder(csb->csb_pool);
459 getChildren(holder, false);
460
461 for (auto i : holder.refs)
462 {
463 if (*i)
464 (*i)->findDependentFromStreams(csb, currentStream, streamList);
465 }
466}
467
468ExprNode* ExprNode::pass1(thread_db* tdbb, CompilerScratch* csb)
469{

Callers

nothing calls this directly

Calls 2

existMethod · 0.45
addMethod · 0.45

Tested by

no test coverage detected