Skip to content

Commit 09571a9

Browse files
authored
Merge branch 'SeaQL:master' into cli-config
2 parents bfe293d + af52e86 commit 09571a9

15 files changed

+1382
-63
lines changed

examples/salvo_example/api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
salvo-example-service = { path = "../service" }
88
tokio = { version = "1.29.0", features = ["macros", "rt-multi-thread"] }
9-
salvo = { version = "0.49", features = ["affix", "serve-static"] }
9+
salvo = { version = "0.50", features = ["affix", "serve-static"] }
1010
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
1111
serde = { version = "1", features = ["derive"] }
1212
tera = "1.19.0"

examples/salvo_example/entity/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ path = "src/lib.rs"
1010

1111
[dependencies]
1212
serde = { version = "1", features = ["derive"] }
13-
salvo = { version = "0.49" }
13+
salvo = { version = "0.50" }
1414

1515
[dependencies.sea-orm]
1616
path = "../../../" # remove this line in your own project

issues/1790/Cargo.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[workspace]
2+
# A separate workspace
3+
4+
[package]
5+
name = "sea-orm-issues-1790"
6+
version = "0.1.0"
7+
edition = "2023"
8+
publish = false
9+
10+
[dependencies]
11+
anyhow = "1"
12+
serde = "1"
13+
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
14+
15+
[dependencies.sea-orm]
16+
path = "../../"
17+
default-features = false
18+
features = ["macros", "runtime-tokio-native-tls", "sqlx-sqlite"]

issues/1790/insert_test.rs

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
mod tests {
2+
// currently ok
3+
#[test]
4+
fn insert_do_nothing_postgres() {
5+
assert_eq!(
6+
Insert::<cake::ActiveModel>::new()
7+
.add(cake::Model {
8+
id: 1,
9+
name: "Apple Pie".to_owned(),
10+
})
11+
.on_conflict(OnConflict::new()
12+
.do_nothing()
13+
.to_owned()
14+
)
15+
.build(DbBackend::Postgres)
16+
.to_string(),
17+
r#"INSERT INTO "cake" ("id", "name") VALUES (1, 'Apple Pie') ON CONFLICT DO NOTHING"#,
18+
);
19+
}
20+
21+
//failed to run
22+
#[test]
23+
fn insert_do_nothing_mysql() {
24+
assert_eq!(
25+
Insert::<cake::ActiveModel>::new()
26+
.add(cake::Model {
27+
id: 1,
28+
name: "Apple Pie".to_owned(),
29+
})
30+
.on_conflict(OnConflict::new()
31+
.do_nothing()
32+
.to_owned()
33+
)
34+
.build(DbBackend::Mysql)
35+
.to_string(),
36+
r#"INSERT IGNORE INTO "cake" ("id", "name") VALUES (1, 'Apple Pie')"#,
37+
);
38+
}
39+
40+
// currently ok
41+
#[test]
42+
fn insert_do_nothing() {
43+
assert_eq!(
44+
Insert::<cake::ActiveModel>::new()
45+
.add(cake::Model {
46+
id: 1,
47+
name: "Apple Pie".to_owned(),
48+
})
49+
.on_conflict(OnConflict::new()
50+
.do_nothing()
51+
.to_owned()
52+
)
53+
.build(DbBackend::Sqlite)
54+
.to_string(),
55+
r#"INSERT IGNORE INTO "cake" ("id", "name") VALUES (1, 'Apple Pie')"#,
56+
);
57+
}
58+
}

src/database/mock.rs

+27
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,33 @@ where
285285
}
286286
}
287287

288+
impl<M, N> IntoMockRow for (M, Option<N>)
289+
where
290+
M: ModelTrait,
291+
N: ModelTrait,
292+
{
293+
fn into_mock_row(self) -> MockRow {
294+
let mut mapped_join = BTreeMap::new();
295+
296+
for column in <<M as ModelTrait>::Entity as EntityTrait>::Column::iter() {
297+
mapped_join.insert(
298+
format!("{}{}", SelectA.as_str(), column.as_str()),
299+
self.0.get(column),
300+
);
301+
}
302+
if let Some(b_entity) = self.1 {
303+
for column in <<N as ModelTrait>::Entity as EntityTrait>::Column::iter() {
304+
mapped_join.insert(
305+
format!("{}{}", SelectB.as_str(), column.as_str()),
306+
b_entity.get(column),
307+
);
308+
}
309+
}
310+
311+
mapped_join.into_mock_row()
312+
}
313+
}
314+
288315
impl<T> IntoMockRow for BTreeMap<T, Value>
289316
where
290317
T: Into<String>,

src/entity/base_entity.rs

-1
Original file line numberDiff line numberDiff line change
@@ -960,7 +960,6 @@ mod tests {
960960
);
961961
}
962962

963-
delete_by_id("UUID".to_string());
964963
delete_by_id("UUID".to_string());
965964
delete_by_id("UUID");
966965
delete_by_id(Cow::from("UUID"));

0 commit comments

Comments
 (0)