| 677 | }; |
| 678 | |
| 679 | bool HashJoinSchema::HasDictionaries() const { |
| 680 | for (int side = 0; side <= 1; ++side) { |
| 681 | for (int icol = 0; icol < proj_maps[side].num_cols(HashJoinProjection::INPUT); |
| 682 | ++icol) { |
| 683 | const std::shared_ptr<DataType>& column_type = |
| 684 | proj_maps[side].data_type(HashJoinProjection::INPUT, icol); |
| 685 | if (column_type->id() == Type::DICTIONARY) { |
| 686 | return true; |
| 687 | } |
| 688 | } |
| 689 | } |
| 690 | return false; |
| 691 | } |
| 692 | |
| 693 | bool HashJoinSchema::HasLargeBinary() const { |
| 694 | for (int side = 0; side <= 1; ++side) { |