From 5e47dd5d740c58b529893e4559a8ca864b5aace5 Mon Sep 17 00:00:00 2001 From: Billy Chan Date: Fri, 6 Aug 2021 18:32:16 +0800 Subject: [PATCH] SQLite not support right join --- tests/sequential_op_tests.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/sequential_op_tests.rs b/tests/sequential_op_tests.rs index 63042cb0..d21e1c66 100644 --- a/tests/sequential_op_tests.rs +++ b/tests/sequential_op_tests.rs @@ -10,11 +10,7 @@ pub use common::{bakery_chain::*, setup::*, TestContext}; // Run the test locally: // DATABASE_URL="mysql://root:@localhost" cargo test --features sqlx-mysql --test sequential_op_tests #[async_std::test] -#[cfg(any( - feature = "sqlx-mysql", - feature = "sqlx-sqlite", - feature = "sqlx-postgres" -))] +#[cfg(any(feature = "sqlx-mysql", feature = "sqlx-postgres"))] pub async fn test_multiple_operations() { let ctx = TestContext::new("multiple_sequential_operations").await;