(&self, session_id: &Uuid)
| 2165 | } |
| 2166 | |
| 2167 | pub async fn commit_with_session(&self, session_id: &Uuid) -> Result<(), PgSqliteError> { |
| 2168 | self.commit(session_id).await |
| 2169 | } |
| 2170 | |
| 2171 | pub async fn rollback(&self, session_id: &Uuid) -> Result<(), PgSqliteError> { |
| 2172 | self.connection_manager.execute_with_session(session_id, |conn| { |