mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-22 16:23:54 +01:00
Fix SQL cache query (#318)
I just deployed the older version and it was falling back on the full count. Turns out this is because it won't upcast from INT4 to INT8 automatically, and it has to be manual At some point the underlying total should be changed to int8, but also I highly doubt anyone will have enough shell history to fill an int4 lol
This commit is contained in:
parent
fe05d86bfa
commit
24e2971787
@ -120,7 +120,7 @@ impl Database for Postgres {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async fn count_history_cached(&self, user: &User) -> Result<i64> {
|
async fn count_history_cached(&self, user: &User) -> Result<i64> {
|
||||||
let res: (i64,) = sqlx::query_as(
|
let res: (i32,) = sqlx::query_as(
|
||||||
"select total from total_history_count_user
|
"select total from total_history_count_user
|
||||||
where user_id = $1",
|
where user_id = $1",
|
||||||
)
|
)
|
||||||
@ -128,7 +128,7 @@ impl Database for Postgres {
|
|||||||
.fetch_one(&self.pool)
|
.fetch_one(&self.pool)
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
Ok(res.0)
|
Ok(res.0 as i64)
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn count_history_range(
|
async fn count_history_range(
|
||||||
|
Loading…
Reference in New Issue
Block a user