Skip to content

Commit fb8ea9d

Browse files
committed
Revert "Try to insert non-numberic value without default value."
This reverts commit 3356023.
1 parent 3356023 commit fb8ea9d

File tree

4 files changed

+18
-45
lines changed

4 files changed

+18
-45
lines changed

examples/proxy_gluesql_example/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ publish = false
88
[workspace]
99

1010
[dependencies]
11-
anyhow = "^1"
1211
async-std = { version = "1.12", features = ["attributes", "tokio1"] }
1312
serde_json = { version = "1" }
1413
serde = { version = "1" }
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
use sea_orm::{entity::prelude::*, ActiveValue::*};
1+
use sea_orm::entity::prelude::*;
22
use serde::{Deserialize, Serialize};
33

44
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, Deserialize, Serialize)]
55
#[sea_orm(table_name = "posts")]
66
pub struct Model {
77
#[sea_orm(primary_key)]
8-
pub id: Uuid,
8+
pub id: i64,
99

1010
pub title: String,
1111
pub text: String,
@@ -14,15 +14,4 @@ pub struct Model {
1414
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
1515
pub enum Relation {}
1616

17-
#[async_trait::async_trait]
18-
impl ActiveModelBehavior for ActiveModel {
19-
async fn before_save<C>(self, _db: &C, _insert: bool) -> Result<Self, DbErr>
20-
where
21-
C: ConnectionTrait,
22-
{
23-
println!("Before save");
24-
let mut ret = self.clone();
25-
ret.id = Set(Uuid::new_v4());
26-
Ok(ret)
27-
}
28-
}
17+
impl ActiveModelBehavior for ActiveModel {}

examples/proxy_gluesql_example/src/main.rs

+11-27
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,15 @@
44

55
mod entity;
66

7-
use anyhow::{anyhow, Result};
87
use std::{
98
collections::BTreeMap,
109
sync::{Arc, Mutex},
1110
};
1211

1312
use gluesql::{memory_storage::MemoryStorage, prelude::Glue};
1413
use sea_orm::{
15-
ActiveModelTrait, ActiveValue::Set, Database, DbBackend, DbErr, EntityTrait,
16-
ProxyDatabaseTrait, ProxyExecResult, ProxyRow, Statement,
14+
ActiveValue::Set, Database, DbBackend, DbErr, EntityTrait, ProxyDatabaseTrait, ProxyExecResult,
15+
ProxyRow, Statement,
1716
};
1817

1918
use entity::post::{ActiveModel, Entity};
@@ -100,12 +99,6 @@ impl ProxyDatabaseTrait for ProxyDb {
10099
val.unwrap_or(0).to_string(),
101100
false,
102101
),
103-
sea_orm::Value::Uuid(val) => {
104-
Value::SingleQuotedString(match val {
105-
Some(val) => val.to_string(),
106-
None => "".to_string(),
107-
})
108-
}
109102
_ => todo!(),
110103
};
111104
}
@@ -139,14 +132,14 @@ impl ProxyDatabaseTrait for ProxyDb {
139132
}
140133

141134
#[async_std::main]
142-
async fn main() -> Result<()> {
135+
async fn main() {
143136
let mem = MemoryStorage::default();
144137
let mut glue = Glue::new(mem);
145138

146139
glue.execute(
147140
r#"
148141
CREATE TABLE IF NOT EXISTS posts (
149-
id UUID PRIMARY KEY,
142+
id INTEGER PRIMARY KEY,
150143
title TEXT NOT NULL,
151144
text TEXT NOT NULL
152145
)
@@ -167,41 +160,32 @@ async fn main() -> Result<()> {
167160
println!("Initialized");
168161

169162
let data = ActiveModel {
163+
id: Set(11),
170164
title: Set("Homo".to_owned()),
171165
text: Set("いいよ、来いよ".to_owned()),
172-
..Default::default()
173166
};
174-
175-
println!("data: {:?}", data);
176-
let ret = data.insert(&db).await.map_err(|err| anyhow!("{:?}", err))?;
177-
println!("ret: {:?}", ret);
178-
167+
Entity::insert(data).exec(&db).await.unwrap();
179168
let data = ActiveModel {
169+
id: Set(45),
180170
title: Set("Homo".to_owned()),
181171
text: Set("そうだよ".to_owned()),
182-
..Default::default()
183172
};
184-
let ret = data.insert(&db).await.map_err(|err| anyhow!("{:?}", err))?;
185-
println!("ret: {:?}", ret);
186-
173+
Entity::insert(data).exec(&db).await.unwrap();
187174
let data = ActiveModel {
175+
id: Set(14),
188176
title: Set("Homo".to_owned()),
189177
text: Set("悔い改めて".to_owned()),
190-
..Default::default()
191178
};
192-
let ret = data.insert(&db).await.map_err(|err| anyhow!("{:?}", err))?;
193-
println!("ret: {:?}", ret);
179+
Entity::insert(data).exec(&db).await.unwrap();
194180

195181
let list = Entity::find().all(&db).await.unwrap().to_vec();
196182
println!("Result: {:?}", list);
197-
198-
Ok(())
199183
}
200184

201185
#[cfg(test)]
202186
mod tests {
203187
#[smol_potat::test]
204188
async fn try_run() {
205-
crate::main().unwrap();
189+
crate::main()
206190
}
207191
}

src/executor/insert.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -256,9 +256,10 @@ where
256256
if db_backend == DbBackend::MySql && last_insert_id == 0 {
257257
return Err(DbErr::RecordNotInserted);
258258
}
259-
ValueTypeOf::<A>::try_from_u64(last_insert_id)
260-
.map(|val| Some(val))
261-
.unwrap_or(None)
259+
Some(
260+
ValueTypeOf::<A>::try_from_u64(last_insert_id)
261+
.map_err(|_| DbErr::UnpackInsertId)?,
262+
)
262263
} else {
263264
None
264265
}

0 commit comments

Comments
 (0)