diff --git a/atuin-server-postgres/src/lib.rs b/atuin-server-postgres/src/lib.rs index 6a9b9203..89e3e90a 100644 --- a/atuin-server-postgres/src/lib.rs +++ b/atuin-server-postgres/src/lib.rs @@ -387,7 +387,7 @@ impl Database for Postgres { // we are basically using postgres as a kv store here, so... maybe consider using an actual // kv store? let record: Result = sqlx::query_as( - "select client_id, host, parent, timestamp, version, tag, data from records + "select client_id, host, parent, timestamp, version, tag, data, cek from records where user_id = $1 and tag = $2 and host = $3