(stdb: &RelationalDB, tx: &mut MutTx, table_id: TableId)
| 2866 | } |
| 2867 | |
| 2868 | fn insert_three_i32s(stdb: &RelationalDB, tx: &mut MutTx, table_id: TableId) -> ResultTest<()> { |
| 2869 | for v in [-1, 0, 1] { |
| 2870 | insert(stdb, tx, table_id, &product![v])?; |
| 2871 | } |
| 2872 | Ok(()) |
| 2873 | } |
| 2874 | |
| 2875 | #[test] |
| 2876 | fn test_pre_commit() -> ResultTest<()> { |
searching dependent graphs…