| 713 | } |
| 714 | |
| 715 | void LocalTableSourceNode::pass1Source(thread_db* tdbb, CompilerScratch* csb, RseNode* /*rse*/, |
| 716 | BoolExprNode** /*boolean*/, RecordSourceNodeStack& stack) |
| 717 | { |
| 718 | fb_assert(!csb->csb_view); // local tables cannot be inside a view |
| 719 | |
| 720 | stack.push(this); // Assume that the source will be used. Push it on the final stream stack. |
| 721 | |
| 722 | pass1(tdbb, csb); |
| 723 | } |
| 724 | |
| 725 | void LocalTableSourceNode::pass2Rse(thread_db* tdbb, CompilerScratch* csb) |
| 726 | { |
no test coverage detected