This commit is contained in:
Billy Chan 2021-11-08 20:11:44 +08:00
parent 30f43b64c6
commit 2f0ac4ca1d
No known key found for this signature in database
GPG Key ID: A2D690CAC7DF3CC7
3 changed files with 5 additions and 4 deletions

View File

@ -395,7 +395,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
version: [8.0, 5.7] version: [8.0.27, 5.7.36]
runtime: [async-std, actix, tokio] runtime: [async-std, actix, tokio]
tls: [native-tls] tls: [native-tls]
services: services:
@ -456,7 +456,7 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
version: [10.7, 10.6, 10.5, 10.0, 5.5] version: [10.6, 10.5, 10.0, 5.5]
runtime: [async-std, actix, tokio] runtime: [async-std, actix, tokio]
tls: [native-tls] tls: [native-tls]
services: services:

View File

@ -349,7 +349,8 @@ impl<'a> ConnectionTrait<'a> for DatabaseTransaction {
} }
fn support_returning(&self) -> bool { fn support_returning(&self) -> bool {
panic!("FIXME: How?") // FIXME: How?
false
} }
} }

View File

@ -221,6 +221,6 @@ async fn into_db_connection(pool: MySqlPool) -> Result<DatabaseConnection, DbErr
Ok(DatabaseConnection::SqlxMySqlPoolConnection { Ok(DatabaseConnection::SqlxMySqlPoolConnection {
conn, conn,
version, version,
support_returning, support_returning: false,
}) })
} }