| 1783 | } |
| 1784 | |
| 1785 | bool AggregateSourceNode::containsStream(StreamType checkStream) const |
| 1786 | { |
| 1787 | // for aggregates, check current RseNode, if not found then check |
| 1788 | // the sub-rse |
| 1789 | |
| 1790 | if (checkStream == stream) |
| 1791 | return true; // do not mark as variant |
| 1792 | |
| 1793 | if (rse->containsStream(checkStream)) |
| 1794 | return true; // do not mark as variant |
| 1795 | |
| 1796 | return false; |
| 1797 | } |
| 1798 | |
| 1799 | RecordSource* AggregateSourceNode::compile(thread_db* tdbb, Optimizer* opt, bool /*innerSubStream*/) |
| 1800 | { |
no test coverage detected