This commit is contained in:
Ellie Huxtable 2023-07-09 21:14:40 +01:00
parent d8e7e2c9d2
commit 1a6e012295

View File

@ -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<DbRecord, DbError> = 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