(&self, collection: &str)
| 43 | } |
| 44 | |
| 45 | pub(super) fn is_bitemporal(&self, collection: &str) -> bool { |
| 46 | self.configs.get(collection).is_some_and(|c| c.bitemporal) |
| 47 | } |
| 48 | |
| 49 | /// Drop all secondary index entries for a field across the entire collection. |
| 50 | pub fn drop_field_index(&self, collection: &str, field: &str) -> crate::Result<usize> { |