Returns the `FilterCharacteristics` for the join input described by `self`.
(&mut self)
| 3367 | |
| 3368 | /// Returns the `FilterCharacteristics` for the join input described by `self`. |
| 3369 | pub fn filters(&mut self) -> &mut FilterCharacteristics { |
| 3370 | match self { |
| 3371 | Self::V1(jic) => &mut jic.filters, |
| 3372 | Self::V2(jic) => &mut jic.filters, |
| 3373 | } |
| 3374 | } |
| 3375 | } |
| 3376 | |
| 3377 | /// Newer version of `JoinInputCharacteristics`, with `enable_join_prioritize_arranged` turned on. |