Merge branch 'fix-error-diff-sqlite-version' into 'staging'
fix error on diff sqlite version See merge request PhilippHofer/rot!18
This commit is contained in:
commit
4fe17284bb
@ -85,10 +85,9 @@ impl Logbook {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub async fn on_water(db: &SqlitePool) -> Vec<LogbookWithBoatAndRowers> {
|
pub async fn on_water(db: &SqlitePool) -> Vec<LogbookWithBoatAndRowers> {
|
||||||
let logs = sqlx::query_as!(
|
let rows = sqlx::query!(
|
||||||
Logbook,
|
|
||||||
"
|
"
|
||||||
SELECT id, boat_id, shipmaster, shipmaster_only_steering, departure, arrival, destination, distance_in_km, comments, logtype
|
SELECT id, boat_id, shipmaster, shipmaster_only_steering, strftime('%Y-%m-%d %H:%M', departure) as departure, arrival, destination, distance_in_km, comments, logtype
|
||||||
FROM logbook
|
FROM logbook
|
||||||
WHERE arrival is null
|
WHERE arrival is null
|
||||||
ORDER BY departure DESC
|
ORDER BY departure DESC
|
||||||
@ -98,6 +97,22 @@ impl Logbook {
|
|||||||
.await
|
.await
|
||||||
.unwrap(); //TODO: fixme
|
.unwrap(); //TODO: fixme
|
||||||
|
|
||||||
|
let logs: Vec<Logbook> = rows
|
||||||
|
.into_iter()
|
||||||
|
.map(|row| Logbook {
|
||||||
|
id: row.id,
|
||||||
|
boat_id: row.boat_id,
|
||||||
|
shipmaster: row.shipmaster,
|
||||||
|
shipmaster_only_steering: row.shipmaster_only_steering,
|
||||||
|
departure: row.departure.unwrap(),
|
||||||
|
arrival: row.arrival,
|
||||||
|
destination: row.destination,
|
||||||
|
distance_in_km: row.distance_in_km,
|
||||||
|
comments: row.comments,
|
||||||
|
logtype: row.logtype,
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
|
||||||
let mut ret = Vec::new();
|
let mut ret = Vec::new();
|
||||||
for log in logs {
|
for log in logs {
|
||||||
let date_time_naive =
|
let date_time_naive =
|
||||||
|
Loading…
Reference in New Issue
Block a user