SQLite not support right join

This commit is contained in:
Billy Chan 2021-08-06 18:32:16 +08:00
parent 1eb490055e
commit 5e47dd5d74
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7

View File

@ -10,11 +10,7 @@ pub use common::{bakery_chain::*, setup::*, TestContext};
// Run the test locally: // Run the test locally:
// DATABASE_URL="mysql://root:@localhost" cargo test --features sqlx-mysql --test sequential_op_tests // DATABASE_URL="mysql://root:@localhost" cargo test --features sqlx-mysql --test sequential_op_tests
#[async_std::test] #[async_std::test]
#[cfg(any( #[cfg(any(feature = "sqlx-mysql", feature = "sqlx-postgres"))]
feature = "sqlx-mysql",
feature = "sqlx-sqlite",
feature = "sqlx-postgres"
))]
pub async fn test_multiple_operations() { pub async fn test_multiple_operations() {
let ctx = TestContext::new("multiple_sequential_operations").await; let ctx = TestContext::new("multiple_sequential_operations").await;