From 37fcdb81bcc6c773aa4d2dcb5a8adbd0b5428c5b Mon Sep 17 00:00:00 2001 From: philipp Date: Sat, 6 Apr 2024 19:57:42 +0200 Subject: [PATCH] remove unnecessary if --- src/model/stat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/stat.rs b/src/model/stat.rs index 7199ce8..10384b9 100644 --- a/src/model/stat.rs +++ b/src/model/stat.rs @@ -30,7 +30,7 @@ impl BoatStat { SELECT boat.id, location.name AS location, - CAST(strftime('%Y', COALESCE(arrival, 'now')) AS INTEGER) AS year, + CAST(strftime('%Y', arrival) AS INTEGER) AS year, CAST(SUM(COALESCE(distance_in_km, 0)) AS INTEGER) AS rowed_km FROM boat