(datastore: &Locking, tx: MutTxId)
| 1290 | } |
| 1291 | |
| 1292 | pub(crate) fn commit(datastore: &Locking, tx: MutTxId) -> ResultTest<TxData> { |
| 1293 | let (_, tx_data, _, _) = datastore.commit_mut_tx(tx)?.expect("commit should produce `TxData`"); |
| 1294 | Ok(tx_data) |
| 1295 | } |
| 1296 | |
| 1297 | #[rustfmt::skip] |
| 1298 | fn basic_table_schema_cols() -> [ColRow<'static>; 3] { |
searching dependent graphs…