| 163 | } |
| 164 | |
| 165 | void Union::getChildren(Array<const RecordSource*>& children) const |
| 166 | { |
| 167 | for (FB_SIZE_T i = 0; i < m_args.getCount(); i++) |
| 168 | children.add(m_args[i]); |
| 169 | } |
| 170 | |
| 171 | void Union::print(thread_db* tdbb, string& plan, bool detailed, unsigned level, bool recurse) const |
| 172 | { |
no test coverage detected