()
| 67 | |
| 68 | #[test] |
| 69 | fn delete_nonexistent_pk() { |
| 70 | let mut engine = MutationEngine::new("test".into(), test_schema()); |
| 71 | |
| 72 | let err = engine.delete(&Value::Integer(999)); |
| 73 | assert!(matches!(err, Err(ColumnarError::PrimaryKeyNotFound))); |
| 74 | } |
| 75 | |
| 76 | #[test] |
| 77 | fn update_row() { |
nothing calls this directly
no test coverage detected