Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
hivemind
Merge requests
!863
Draft: refactor follows and update_nofications indexing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: refactor follows and update_nofications indexing
267-update-notification-cache
into
develop
Overview
0
Commits
90
Pipelines
0
Changes
1
Open
Dan Notestein
requested to merge
267-update-notification-cache
into
develop
2 weeks ago
Overview
0
Commits
90
Pipelines
0
Changes
1
Expand
Based on
!819
Edited
1 week ago
by
Krzysztof Leśniak
0
0
Merge request reports
Viewing commit
06d98bc1
Prev
Next
Show latest version
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
06d98bc1
Convert get_account_posts.sql to new tables
· 06d98bc1
Krzysztof Leśniak
authored
2 months ago
hive/db/sql_scripts/postgrest/utilities/get_account_posts.sql
+
5
−
5
Options
@@ -204,8 +204,8 @@ BEGIN
IF
_post_id
<>
0
THEN
SELECT
MIN
(
hfc
.
created_at
)
INTO
_min_date
FROM
hivemind_app
.
hive_feed_cache
hfc
JOIN
hivemind_app
.
hive_
follows
h
f
ON
hfc
.
account_id
=
h
f
.
following
WHERE
hf
.
state
=
1
AND
h
f
.
follower
=
_account_id
AND
hfc
.
post_id
=
_post_id
;
JOIN
hivemind_app
.
follows
f
ON
hfc
.
account_id
=
f
.
following
WHERE
f
.
follower
=
_account_id
AND
hfc
.
post_id
=
_post_id
;
END
IF
;
_cutoff
=
hivemind_app
.
block_before_head
(
'1 month'
);
@@ -227,9 +227,9 @@ BEGIN
MIN
(
hfc
.
created_at
)
as
min_created
,
array_agg
(
DISTINCT
(
ha
.
name
)
ORDER
BY
ha
.
name
)
AS
reblogged_by
FROM
hivemind_app
.
hive_feed_cache
hfc
JOIN
hivemind_app
.
hive_
follows
h
f
ON
hfc
.
account_id
=
h
f
.
following
JOIN
hivemind_app
.
hive_accounts
ha
ON
ha
.
id
=
h
f
.
following
WHERE
hfc
.
block_num
>
_cutoff
AND
hf
.
state
=
1
AND
h
f
.
follower
=
_account_id
JOIN
hivemind_app
.
follows
f
ON
hfc
.
account_id
=
f
.
following
JOIN
hivemind_app
.
hive_accounts
ha
ON
ha
.
id
=
f
.
following
WHERE
hfc
.
block_num
>
_cutoff
AND
f
.
follower
=
_account_id
AND
(
_observer_id
=
0
OR
NOT
EXISTS
(
SELECT
1
FROM
hivemind_app
.
muted_accounts_by_id_view
WHERE
observer_id
=
_observer_id
AND
muted_id
=
hfc
.
account_id
))
GROUP
BY
hfc
.
post_id
HAVING
(
_post_id
=
0
OR
MIN
(
hfc
.
created_at
)
<
_min_date
OR
(
MIN
(
hfc
.
created_at
)
=
_min_date
AND
hfc
.
post_id
<
_post_id
))
Loading