Skip to content

Commit 60d0964

Browse files
committed
Fix clippy.
1 parent 10add18 commit 60d0964

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/executor/query.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -1362,11 +1362,8 @@ impl TryFromRawValue for uuid::Uuid {
13621362
}
13631363

13641364
fn try_from_string(s: String) -> Result<Self, DbErr> {
1365-
Ok(uuid::Uuid::parse_str(&s).map_err(|e| DbErr::TryIntoErr {
1366-
from: "String",
1367-
into: "uuid::Uuid",
1368-
source: Box::new(e),
1369-
})?)
1365+
uuid::Uuid::parse_str(&s)
1366+
.map_err(|e| DbErr::Type(format!("Failed to parse string to uuid::Uuid: {}", e)))
13701367
}
13711368
}
13721369

0 commit comments

Comments
 (0)