mirror of
https://github.com/Nutomic/ibis.git
synced 2024-12-31 23:01:24 +00:00
Fix ci error
This commit is contained in:
parent
6bde2922ed
commit
9a57b49005
1 changed files with 2 additions and 2 deletions
|
@ -102,7 +102,7 @@ DECLARE
|
|||
count_ integer;
|
||||
BEGIN
|
||||
SELECT
|
||||
count(*) INTO count_
|
||||
count(users) INTO count_
|
||||
FROM (
|
||||
SELECT
|
||||
e.creator_id
|
||||
|
@ -111,7 +111,7 @@ BEGIN
|
|||
INNER JOIN person p ON e.creator_id = p.id
|
||||
WHERE
|
||||
e.published > ('now'::timestamp - i::interval)
|
||||
AND p.local = TRUE);
|
||||
AND p.local = TRUE) as users;
|
||||
RETURN count_;
|
||||
END;
|
||||
$$;
|
||||
|
|
Loading…
Reference in a new issue