aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2021-05-30 00:15:36 +0200
committerTeddy Wing2021-05-30 00:20:39 +0200
commit278db85ab836948bc11fe2d26da126fc7695c083 (patch)
tree079c19d9a165a391c684b8ba4c3d3a46b79a5d56 /src
parent768b67c966e9a78864b450b6051974d096f1d412 (diff)
downloadreflectub-278db85ab836948bc11fe2d26da126fc7695c083.tar.bz2
database::repo_get: Don't need my own error for empty row
Sqlx already returns an appropriate error if no row was found.
Diffstat (limited to 'src')
-rw-r--r--src/database.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/database.rs b/src/database.rs
index a49675f..e4ca5e9 100644
--- a/src/database.rs
+++ b/src/database.rs
@@ -58,6 +58,7 @@ impl Db {
) -> Result<Repo, Box<dyn std::error::Error>> {
let mut tx = self.connection.begin().await?;
+ // NOTE: Returns `RowNotFound` if not found.
let row = sqlx::query("SELECT id, name FROM repositories where id = ?")
.bind(id)
.fetch_one(&mut tx)
@@ -65,10 +66,6 @@ impl Db {
tx.commit().await?;
- if row.is_empty() {
- return Err("not found".into());
- }
-
Ok(
Repo {
id: Some(row.get(0)),