| 60 | } |
| 61 | |
| 62 | static bool sameTableIDs(const std::unordered_set<table_id_t>& set, |
| 63 | const std::vector<table_id_t>& ids) { |
| 64 | if (set.size() != ids.size()) { |
| 65 | return false; |
| 66 | } |
| 67 | for (auto id : ids) { |
| 68 | if (!set.contains(id)) { |
| 69 | return false; |
| 70 | } |
| 71 | } |
| 72 | return true; |
| 73 | } |
| 74 | |
| 75 | static bool haveSameTableIDs(const std::vector<LogicalOperator*>& ops, |
| 76 | SemiMaskTargetType targetType) { |
no test coverage detected