use order by

This commit is contained in:
Barış Soner Uşaklı
2023-05-07 23:48:09 -04:00
parent 77b05b73a8
commit 2cdc454f3e
2 changed files with 1 additions and 7 deletions

View File

@@ -290,7 +290,7 @@ PARALLEL SAFE`);
if (!res.rows[0].d) {
await client.query(`
CREATE FUNCTION "nodebb_get_sorted_set_members_withscores"(TEXT) RETURNS JSON AS $$
SELECT json_agg(json_build_object('value', z."value", 'score', z."score")) as item
SELECT json_agg(json_build_object('value', z."value", 'score', z."score") ORDER BY z."score" ASC) as item
FROM "legacy_object_live" o
INNER JOIN "legacy_zset" z
ON o."_key" = z."_key"