This commit is contained in:
Chris Tsang 2021-10-04 21:01:02 +08:00
parent 4fd5d56dbf
commit 632290469b

View File

@ -1,4 +1,4 @@
use crate::{DatabaseConnection, DbBackend, QueryTrait, Statement}; use crate::{database::*, QueryTrait, Statement};
#[derive(Debug)] #[derive(Debug)]
pub struct DebugQuery<'a, Q, T> { pub struct DebugQuery<'a, Q, T> {
@ -38,7 +38,7 @@ debug_query_build!(
/// ///
/// ``` /// ```
/// # #[cfg(feature = "mock")] /// # #[cfg(feature = "mock")]
/// # use sea_orm::{error::*, tests_cfg::*, MockDatabase, MockExecResult, Transaction, DbBackend}; /// # use sea_orm::{error::*, tests_cfg::*, MockDatabase, MockExecResult, DbBackend};
/// # /// #
/// # let conn = MockDatabase::new(DbBackend::Postgres) /// # let conn = MockDatabase::new(DbBackend::Postgres)
/// # .into_connection(); /// # .into_connection();
@ -81,7 +81,7 @@ macro_rules! debug_query_stmt {
/// ///
/// ``` /// ```
/// # #[cfg(feature = "mock")] /// # #[cfg(feature = "mock")]
/// # use sea_orm::{error::*, tests_cfg::*, MockDatabase, MockExecResult, Transaction, DbBackend}; /// # use sea_orm::{error::*, tests_cfg::*, MockDatabase, MockExecResult, DbBackend};
/// # /// #
/// # let conn = MockDatabase::new(DbBackend::Postgres) /// # let conn = MockDatabase::new(DbBackend::Postgres)
/// # .into_connection(); /// # .into_connection();