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
Commits
9c9a21c7
Commit
9c9a21c7
authored
4 years ago
by
Jason Salyers
Browse files
Options
Downloads
Patches
Plain Diff
[JES] Trying another function as a test
parent
bf2cee67
No related branches found
No related tags found
2 merge requests
!456
Release candidate v1 24
,
!370
Jsalyers muting at sql level
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hive/db/sql_scripts/bridge_get_ranked_post_for_communities.sql
+2
-1
2 additions, 1 deletion
...db/sql_scripts/bridge_get_ranked_post_for_communities.sql
hive/server/bridge_api/methods.py
+1
-1
1 addition, 1 deletion
hive/server/bridge_api/methods.py
with
3 additions
and
2 deletions
hive/db/sql_scripts/bridge_get_ranked_post_for_communities.sql
+
2
−
1
View file @
9c9a21c7
...
@@ -481,7 +481,7 @@ $function$
...
@@ -481,7 +481,7 @@ $function$
language
plpgsql
STABLE
;
language
plpgsql
STABLE
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_created_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_created_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_by_created_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
,
in
_bridge_api
BOOLEAN
)
CREATE
FUNCTION
bridge_get_ranked_post_by_created_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
,
in
_bridge_api
BOOLEAN
,
in
_observer
VARCHAR
)
RETURNS
SETOF
bridge_api_post
RETURNS
SETOF
bridge_api_post
AS
AS
$
function
$
$
function
$
...
@@ -542,6 +542,7 @@ BEGIN
...
@@ -542,6 +542,7 @@ BEGIN
LIMIT
_limit
LIMIT
_limit
)
as
created
)
as
created
JOIN
hive_posts_view
hp
ON
hp
.
id
=
created
.
id
JOIN
hive_posts_view
hp
ON
hp
.
id
=
created
.
id
WHERE
(
CASE
WHEN
_observer
IS
NOT
NULL
THEN
NOT
EXISTS
(
SELECT
1
FROM
muted_accounts_view
WHERE
observer
=
_observer
AND
muted
=
hp
.
author
)
ELSE
true
END
)
ORDER
BY
created
.
id
DESC
ORDER
BY
created
.
id
DESC
LIMIT
_limit
;
LIMIT
_limit
;
END
END
...
...
This diff is collapsed.
Click to expand it.
hive/server/bridge_api/methods.py
+
1
−
1
View file @
9c9a21c7
...
@@ -252,7 +252,7 @@ async def get_ranked_posts(context, sort:str, start_author:str='', start_permlin
...
@@ -252,7 +252,7 @@ async def get_ranked_posts(context, sort:str, start_author:str='', start_permlin
return
await
process_query_results
(
result
)
return
await
process_query_results
(
result
)
if
tag
and
tag
[:
5
]
==
'
hive-
'
:
if
tag
and
tag
[:
5
]
==
'
hive-
'
:
result
=
await
_get_ranked_posts_for_communities
(
db
,
sort
,
tag
,
start_author
,
start_permlink
,
limit
)
result
=
await
_get_ranked_posts_for_communities
(
db
,
sort
,
tag
,
start_author
,
start_permlink
,
limit
,
observer
)
return
await
process_query_results
(
result
)
return
await
process_query_results
(
result
)
if
(
tag
and
tag
!=
"
all
"
):
if
(
tag
and
tag
!=
"
all
"
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment