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
445e0136
Prev
Next
Show latest version
1 file
+
3
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
445e0136
fix syntax
· 445e0136
Dan Notestein
authored
3 months ago
hive/db/sql_scripts/postgrest/condenser_api/new_condenser_api_get_followers.sql
+
3
−
5
Options
@@ -19,13 +19,13 @@ BEGIN
_account
:
=
params
->
'account'
;
_account_id
:
=
hivemind_postgrest_utilities
.
find_account_id
(
_account
,
TRUE
);
if
(
_account_id
=
0
)
then
raise_parameter_validation_exception
(
'Invalid account'
);
RAISE
EXCEPTION
'%'
,
hivemind_postgrest_utilities
.
raise_parameter_validation_exception
(
'Invalid account'
);
end
if
;
_start
:
=
params
->
'start'
;
_start_id
:
=
hivemind_postgrest_utilities
.
find_account_id
(
_start
,
TRUE
);
if
(
_start_id
=
0
)
then
raise_parameter_validation_exception
(
'Invalid start account'
);
RAISE
EXCEPTION
'%'
,
hivemind_postgrest_utilities
.
raise_parameter_validation_exception
(
'Invalid start account'
);
end
if
;
_follow_type
:
=
hivemind_postgrest_utilities
.
parse_argument_from_json
(
_params
,
'type'
,
FALSE
);
@@ -62,9 +62,7 @@ ELSIF _follow_type = 'ignore' THEN
LIMIT
_limit
);
ELSE
RAISE
EXCEPTION
'%'
,
hivemind_postgrest_utilities
.
raise_parameter_validation_exception
(
'Unsupported follow_type, valid values: blog, ignore'
);
RAISE
EXCEPTION
'%'
,
hivemind_postgrest_utilities
.
raise_parameter_validation_exception
(
'Unsupported follow_type, valid values: blog, ignore'
);
END
IF
;
RETURN
COALESCE
(
_result
,
'[]'
::
jsonb
);
Loading