(&self)
| 240 | #[async_trait::async_trait] |
| 241 | impl ConnectionTrait for DatabaseTransaction { |
| 242 | fn get_database_backend(&self) -> DbBackend { |
| 243 | // this way we don't need to lock |
| 244 | self.backend |
| 245 | } |
| 246 | |
| 247 | #[instrument(level = "trace")] |
| 248 | #[allow(unused_variables)] |