We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 043fa04 commit 41c282cCopy full SHA for 41c282c
sql/core/database_strategy_sqlite/src/lib.rs
@@ -155,7 +155,8 @@ impl DatabaseStrategy for SqliteDatabaseStrategy {
155
}
156
157
158
- let result: AnyQueryResult = query.execute(&mut *tx).await?;
+ // let result: AnyQueryResult = query.execute(&mut *tx).await?;
159
+ let result: AnyRow = query.fetch_one(&mut *tx).await?;
160
let instance = AnyRowJson::from(result).0;
161
Ok(InsertResult {
162
instance_id: {
0 commit comments