| 624 | } |
| 625 | |
| 626 | SelectExprNode* DsqlCompilerScratch::findCTE(const MetaName& name) |
| 627 | { |
| 628 | for (FB_SIZE_T i = 0; i < ctes.getCount(); ++i) |
| 629 | { |
| 630 | SelectExprNode* cte = ctes[i]; |
| 631 | |
| 632 | if (cte->alias == name.c_str()) |
| 633 | return cte; |
| 634 | } |
| 635 | |
| 636 | return NULL; |
| 637 | } |
| 638 | |
| 639 | void DsqlCompilerScratch::clearCTEs() |
| 640 | { |
no test coverage detected