Skip to content

Commit 10add18

Browse files
committed
Rename TryFromU64 to TryFromRawValue for more origin primary key types.
1 parent fb8ea9d commit 10add18

File tree

10 files changed

+139
-82
lines changed

10 files changed

+139
-82
lines changed

issues/324/src/model.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,16 @@ impl From<AccountId> for Uuid {
2222
}
2323
}
2424

25-
macro_rules! impl_try_from_u64_err {
25+
macro_rules! impl_try_from_raw_err {
2626
($newtype: ident) => {
27-
impl sea_orm::TryFromU64 for $newtype {
27+
impl sea_orm::TryFromRawValue for $newtype {
2828
fn try_from_u64(_n: u64) -> Result<Self, sea_orm::DbErr> {
2929
Err(sea_orm::DbErr::ConvertFromU64(stringify!($newtype)))
3030
}
31+
32+
fn try_from_string(_s: String) -> Result<Self, sea_orm::DbErr> {
33+
Err(sea_orm::DbErr::ConvertFromString(stringify!($newtype)))
34+
}
3135
}
3236
};
3337
}
@@ -81,4 +85,4 @@ macro_rules! into_sea_query_value {
8185
}
8286

8387
into_sea_query_value!(AccountId: Box(Uuid));
84-
impl_try_from_u64_err!(AccountId);
88+
impl_try_from_raw_err!(AccountId);

issues/400/src/model.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,14 @@ impl<T> From<AccountId<T>> for Uuid {
2929
}
3030
}
3131

32-
impl<T> sea_orm::TryFromU64 for AccountId<T> {
32+
impl<T> sea_orm::TryFromRawValue for AccountId<T> {
3333
fn try_from_u64(_n: u64) -> Result<Self, sea_orm::DbErr> {
3434
Err(sea_orm::DbErr::ConvertFromU64(stringify!(AccountId<T>)))
3535
}
36+
37+
fn try_from_string(_s: String) -> Result<Self, sea_orm::DbErr> {
38+
Err(sea_orm::DbErr::ConvertFromString(stringify!(AccountId<T>)))
39+
}
3640
}
3741

3842
impl<T> From<AccountId<T>> for sea_orm::Value {

src/database/proxy.rs

+10-9
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ pub trait ProxyDatabaseTrait: Send + Sync + std::fmt::Debug {
2828
}
2929

3030
/// Defines the results obtained from a [ProxyDatabase]
31-
#[derive(Clone, Debug, Default, serde::Serialize, serde::Deserialize)]
31+
#[derive(Clone, Debug, Default)]
3232
pub struct ProxyExecResult {
3333
/// The last inserted id on auto-increment
34-
pub last_insert_id: Option<u64>,
34+
pub last_insert_id: Option<Value>,
3535
/// The number of rows affected by the database operation
3636
pub rows_affected: u64,
3737
}
3838

3939
impl ProxyExecResult {
4040
/// 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 {
4242
Self {
4343
last_insert_id,
4444
rows_affected,
@@ -65,22 +65,22 @@ impl From<ExecResult> for ProxyExecResult {
6565
match result.result {
6666
#[cfg(feature = "sqlx-mysql")]
6767
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))),
6969
rows_affected: result.rows_affected(),
7070
},
7171
#[cfg(feature = "sqlx-postgres")]
7272
ExecResultHolder::SqlxPostgres(result) => Self {
73-
last_insert_id: 0,
73+
last_insert_id: None,
7474
rows_affected: result.rows_affected(),
7575
},
7676
#[cfg(feature = "sqlx-sqlite")]
7777
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))),
7979
rows_affected: result.rows_affected(),
8080
},
8181
#[cfg(feature = "mock")]
8282
ExecResultHolder::Mock(result) => Self {
83-
last_insert_id: result.last_insert_id,
83+
last_insert_id: Some(Value::BigUnsigned(Some(result.last_insert_id))),
8484
rows_affected: result.rows_affected,
8585
},
8686
ExecResultHolder::Proxy(result) => result,
@@ -202,11 +202,12 @@ mod tests {
202202
entity::*, tests_cfg::*, Database, DbBackend, DbErr, ProxyDatabaseTrait, ProxyExecResult,
203203
ProxyRow, Statement,
204204
};
205-
use std::sync::{Arc, Mutex};
205+
use std::sync::Arc;
206206

207207
#[derive(Debug)]
208208
struct ProxyDb {}
209209

210+
#[async_trait::async_trait]
210211
impl ProxyDatabaseTrait for ProxyDb {
211212
async fn query(&self, statement: Statement) -> Result<Vec<ProxyRow>, DbErr> {
212213
println!("SQL query: {}", statement.sql);
@@ -216,7 +217,7 @@ mod tests {
216217
async fn execute(&self, statement: Statement) -> Result<ProxyExecResult, DbErr> {
217218
println!("SQL execute: {}", statement.sql);
218219
Ok(ProxyExecResult {
219-
last_insert_id: 1,
220+
last_insert_id: Some(Value::BigUnsigned(Some(1))),
220221
rows_affected: 1,
221222
})
222223
}

src/entity/active_enum.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
use crate::{ColIdx, ColumnDef, DbErr, Iterable, QueryResult, TryFromU64, TryGetError, TryGetable};
1+
use crate::{
2+
ColIdx, ColumnDef, DbErr, Iterable, QueryResult, TryFromRawValue, TryGetError, TryGetable,
3+
};
24
use sea_query::{DynIden, Expr, Nullable, SimpleExpr, Value, ValueType};
35

46
/// A Rust representation of enum defined in database.
@@ -191,7 +193,7 @@ impl_active_enum_value_with_pg_array!(i16);
191193
impl_active_enum_value_with_pg_array!(i32);
192194
impl_active_enum_value_with_pg_array!(i64);
193195

194-
impl<T> TryFromU64 for T
196+
impl<T> TryFromRawValue for T
195197
where
196198
T: ActiveEnum,
197199
{
@@ -200,6 +202,12 @@ where
200202
"Fail to construct ActiveEnum from a u64, if your primary key consist of a ActiveEnum field, its auto increment should be set to false."
201203
))
202204
}
205+
206+
fn try_from_string(_: String) -> Result<Self, DbErr> {
207+
Err(DbErr::ConvertFromString(
208+
"Fail to construct ActiveEnum from a string",
209+
))
210+
}
203211
}
204212

205213
#[cfg(test)]

src/entity/primary_key.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use super::{ColumnTrait, IdenStatic, Iterable};
2-
use crate::{TryFromU64, TryGetableMany};
2+
use crate::{TryFromRawValue, TryGetableMany};
33
use sea_query::{FromValueTuple, IntoValueTuple};
44
use std::fmt::Debug;
55

@@ -46,7 +46,7 @@ pub trait PrimaryKeyTrait: IdenStatic + Iterable {
4646
+ IntoValueTuple
4747
+ FromValueTuple
4848
+ TryGetableMany
49-
+ TryFromU64
49+
+ TryFromRawValue
5050
+ PrimaryKeyArity;
5151

5252
/// Method to call to perform `AUTOINCREMENT` operation on a Primary Key

src/error.rs

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ pub enum DbErr {
4040
/// Type error: the specified type cannot be converted from u64. This is not a runtime error.
4141
#[error("Type '{0}' cannot be converted from u64")]
4242
ConvertFromU64(&'static str),
43+
/// Type error: the specified type cannot be converted from string. This is not a runtime error.
44+
#[error("Type '{0}' cannot be converted from string")]
45+
ConvertFromString(&'static str),
4346
/// After an insert statement it was impossible to retrieve the last_insert_id
4447
#[error("Failed to unpack last_insert_id")]
4548
UnpackInsertId,

src/executor/execute.rs

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
use sea_query::Value;
2+
13
/// Defines the result of executing an operation
24
#[derive(Debug)]
35
pub struct ExecResult {
@@ -33,10 +35,12 @@ impl ExecResult {
3335
/// Get the last id after `AUTOINCREMENT` is done on the primary key
3436
///
3537
/// Postgres always returns `None`
36-
pub fn last_insert_id(&self) -> Option<u64> {
38+
pub fn last_insert_id(&self) -> Option<Value> {
3739
match &self.result {
3840
#[cfg(feature = "sqlx-mysql")]
39-
ExecResultHolder::SqlxMySql(result) => Some(result.last_insert_id()),
41+
ExecResultHolder::SqlxMySql(result) => {
42+
Some(Value::BigUnsigned(Some(result.last_insert_id())))
43+
}
4044
#[cfg(feature = "sqlx-postgres")]
4145
ExecResultHolder::SqlxPostgres(_) => None,
4246
#[cfg(feature = "sqlx-sqlite")]
@@ -45,13 +49,13 @@ impl ExecResult {
4549
if last_insert_rowid < 0 {
4650
unreachable!("negative last_insert_rowid")
4751
} else {
48-
Some(last_insert_rowid as u64)
52+
Some(Value::BigUnsigned(Some(last_insert_rowid as u64)))
4953
}
5054
}
5155
#[cfg(feature = "mock")]
52-
ExecResultHolder::Mock(result) => Some(result.last_insert_id),
56+
ExecResultHolder::Mock(result) => Some(Value::BigUnsigned(Some(result.last_insert_id))),
5357
#[cfg(feature = "proxy")]
54-
ExecResultHolder::Proxy(result) => result.last_insert_id,
58+
ExecResultHolder::Proxy(result) => result.last_insert_id.clone(),
5559
#[allow(unreachable_patterns)]
5660
_ => unreachable!(),
5761
}

src/executor/insert.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::{
22
error::*, ActiveModelTrait, ColumnTrait, ConnectionTrait, DbBackend, EntityTrait, Insert,
33
IntoActiveModel, Iterable, PrimaryKeyToColumn, PrimaryKeyTrait, SelectModel, SelectorRaw,
4-
TryFromU64, TryInsert,
4+
TryFromRawValue, TryInsert,
55
};
66
use sea_query::{FromValueTuple, Iden, InsertStatement, Query, ValueTuple};
77
use std::{future::Future, marker::PhantomData};
@@ -247,7 +247,8 @@ where
247247
if res.rows_affected() == 0 {
248248
return Err(DbErr::RecordNotInserted);
249249
}
250-
if let Some(last_insert_id) = res.last_insert_id() {
250+
if let Some(sea_query::Value::BigUnsigned(Some(last_insert_id))) = res.last_insert_id()
251+
{
251252
// For MySQL, the affected-rows number:
252253
// - The affected-rows value per row is `1` if the row is inserted as a new row,
253254
// - `2` if an existing row is updated,

0 commit comments

Comments
 (0)