Returns the inserts for `table_id`.
(&self, table_id: TableId)
| 383 | |
| 384 | /// Returns the inserts for `table_id`. |
| 385 | pub fn inserts_for_table(&self, table_id: TableId) -> Option<&[ProductValue]> { |
| 386 | self.entry_for(table_id).map(|entry| &*entry.inserts) |
| 387 | } |
| 388 | |
| 389 | /// Returns the inserts for `table_id`. |
| 390 | pub fn deletes_for_table(&self, table_id: TableId) -> Option<&[ProductValue]> { |
no test coverage detected