| 653 | } |
| 654 | |
| 655 | void HashJoin::nullRecords(thread_db* tdbb) const |
| 656 | { |
| 657 | m_leader.source->nullRecords(tdbb); |
| 658 | |
| 659 | for (FB_SIZE_T i = 0; i < m_args.getCount(); i++) |
| 660 | m_args[i].source->nullRecords(tdbb); |
| 661 | } |
| 662 | |
| 663 | ULONG HashJoin::computeHash(thread_db* tdbb, |
| 664 | Request* request, |
no test coverage detected