Fixup
This commit is contained in:
parent
30f43b64c6
commit
2f0ac4ca1d
4
.github/workflows/rust.yml
vendored
4
.github/workflows/rust.yml
vendored
@ -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:
|
||||||
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user