| 773 | } |
| 774 | |
| 775 | pub trait VTabWriteableNestedTransactions<'vtab>: VTabWriteable<'vtab> { |
| 776 | fn savepoint(&'vtab mut self, id: c_int) -> Result<()>; |
| 777 | fn release(&'vtab mut self, id: c_int) -> Result<()>; |
| 778 | fn rollback_to(&'vtab mut self, id: c_int) -> Result<()>; |
| 779 | } |
| 780 | |
| 781 | pub trait VTabCursor: Sized { |
| 782 | fn filter( |
nothing calls this directly
no outgoing calls
no test coverage detected