| 91 | } |
| 92 | |
| 93 | UInt32 toPowerOfTwo(UInt32 x) |
| 94 | { |
| 95 | if (x <= 1) |
| 96 | return 1; |
| 97 | return static_cast<UInt32>(1) << (32 - std::countl_zero(x - 1)); |
| 98 | } |
| 99 | |
| 100 | HashJoin::RightTableDataPtr getData(const std::shared_ptr<ConcurrentHashJoin::InternalHashJoin> & join) |
| 101 | { |