@@ -28,17 +28,17 @@ pub trait ProxyDatabaseTrait: Send + Sync + std::fmt::Debug {
28
28
}
29
29
30
30
/// Defines the results obtained from a [ProxyDatabase]
31
- #[ derive( Clone , Debug , Default , serde :: Serialize , serde :: Deserialize ) ]
31
+ #[ derive( Clone , Debug , Default ) ]
32
32
pub struct ProxyExecResult {
33
33
/// The last inserted id on auto-increment
34
- pub last_insert_id : Option < u64 > ,
34
+ pub last_insert_id : Option < Value > ,
35
35
/// The number of rows affected by the database operation
36
36
pub rows_affected : u64 ,
37
37
}
38
38
39
39
impl ProxyExecResult {
40
40
/// Create a new [ProxyExecResult] from the last inserted id and the number of rows affected
41
- pub fn new ( last_insert_id : Option < u64 > , rows_affected : u64 ) -> Self {
41
+ pub fn new ( last_insert_id : Option < Value > , rows_affected : u64 ) -> Self {
42
42
Self {
43
43
last_insert_id,
44
44
rows_affected,
@@ -65,22 +65,22 @@ impl From<ExecResult> for ProxyExecResult {
65
65
match result. result {
66
66
#[ cfg( feature = "sqlx-mysql" ) ]
67
67
ExecResultHolder :: SqlxMySql ( result) => Self {
68
- last_insert_id : result. last_insert_id ( ) as u64 ,
68
+ last_insert_id : Some ( Value :: BigUnsigned ( Some ( result. last_insert_id ( ) as u64 ) ) ) ,
69
69
rows_affected : result. rows_affected ( ) ,
70
70
} ,
71
71
#[ cfg( feature = "sqlx-postgres" ) ]
72
72
ExecResultHolder :: SqlxPostgres ( result) => Self {
73
- last_insert_id : 0 ,
73
+ last_insert_id : None ,
74
74
rows_affected : result. rows_affected ( ) ,
75
75
} ,
76
76
#[ cfg( feature = "sqlx-sqlite" ) ]
77
77
ExecResultHolder :: SqlxSqlite ( result) => Self {
78
- last_insert_id : result. last_insert_rowid ( ) as u64 ,
78
+ last_insert_id : Some ( Value :: BigUnsigned ( Some ( result. last_insert_rowid ( ) as u64 ) ) ) ,
79
79
rows_affected : result. rows_affected ( ) ,
80
80
} ,
81
81
#[ cfg( feature = "mock" ) ]
82
82
ExecResultHolder :: Mock ( result) => Self {
83
- last_insert_id : result. last_insert_id ,
83
+ last_insert_id : Some ( Value :: BigUnsigned ( Some ( result. last_insert_id ) ) ) ,
84
84
rows_affected : result. rows_affected ,
85
85
} ,
86
86
ExecResultHolder :: Proxy ( result) => result,
@@ -202,11 +202,12 @@ mod tests {
202
202
entity:: * , tests_cfg:: * , Database , DbBackend , DbErr , ProxyDatabaseTrait , ProxyExecResult ,
203
203
ProxyRow , Statement ,
204
204
} ;
205
- use std:: sync:: { Arc , Mutex } ;
205
+ use std:: sync:: Arc ;
206
206
207
207
#[ derive( Debug ) ]
208
208
struct ProxyDb { }
209
209
210
+ #[ async_trait:: async_trait]
210
211
impl ProxyDatabaseTrait for ProxyDb {
211
212
async fn query ( & self , statement : Statement ) -> Result < Vec < ProxyRow > , DbErr > {
212
213
println ! ( "SQL query: {}" , statement. sql) ;
@@ -216,7 +217,7 @@ mod tests {
216
217
async fn execute ( & self , statement : Statement ) -> Result < ProxyExecResult , DbErr > {
217
218
println ! ( "SQL execute: {}" , statement. sql) ;
218
219
Ok ( ProxyExecResult {
219
- last_insert_id : 1 ,
220
+ last_insert_id : Some ( Value :: BigUnsigned ( Some ( 1 ) ) ) ,
220
221
rows_affected : 1 ,
221
222
} )
222
223
}
0 commit comments