| 365 | void get(Jrd::thread_db*, ULONG**); |
| 366 | |
| 367 | void addPartition(Sort* sort) |
| 368 | { |
| 369 | sort_control item; |
| 370 | item.srt_header.rmh_type = RMH_TYPE_SORT; |
| 371 | item.srt_header.rmh_parent = NULL; |
| 372 | item.srt_sort = sort; |
| 373 | |
| 374 | m_parts.add(item); |
| 375 | } |
| 376 | |
| 377 | void buildMergeTree(); |
| 378 |