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
66e0bf25
Commit
66e0bf25
authored
4 years ago
by
Jason Salyers
Browse files
Options
Downloads
Patches
Plain Diff
[JES] Forgot to add the observer into some SQL definitions
parent
13cf6073
No related branches found
No related tags found
2 merge requests
!456
Release candidate v1 24
,
!370
Jsalyers muting at sql level
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hive/db/sql_scripts/bridge_get_ranked_post_for_communities.sql
+7
-7
7 additions, 7 deletions
...db/sql_scripts/bridge_get_ranked_post_for_communities.sql
with
7 additions
and
7 deletions
hive/db/sql_scripts/bridge_get_ranked_post_for_communities.sql
+
7
−
7
View file @
66e0bf25
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_pinned_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_pinned_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_pinned_for_community
(
in
_community
VARCHAR
,
in
_limit
SMALLINT
)
CREATE
FUNCTION
bridge_get_ranked_post_pinned_for_community
(
in
_community
VARCHAR
,
in
_limit
SMALLINT
,
in
_observer
VARCHAR
)
RETURNS
SETOF
bridge_api_post
RETURNS
SETOF
bridge_api_post
AS
AS
$
function
$
$
function
$
...
@@ -52,7 +52,7 @@ $function$
...
@@ -52,7 +52,7 @@ $function$
language
sql
STABLE
;
language
sql
STABLE
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_trends_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_trends_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_by_trends_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_trends_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
$
...
@@ -125,7 +125,7 @@ $function$
...
@@ -125,7 +125,7 @@ $function$
language
plpgsql
STABLE
;
language
plpgsql
STABLE
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_promoted_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_promoted_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_by_promoted_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
)
CREATE
FUNCTION
bridge_get_ranked_post_by_promoted_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
,
in
_observer
VARCHAR
)
RETURNS
SETOF
bridge_api_post
RETURNS
SETOF
bridge_api_post
AS
AS
$
function
$
$
function
$
...
@@ -197,7 +197,7 @@ $function$
...
@@ -197,7 +197,7 @@ $function$
language
plpgsql
STABLE
;
language
plpgsql
STABLE
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_payout_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_payout_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_by_payout_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
)
CREATE
FUNCTION
bridge_get_ranked_post_by_payout_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
,
in
_observer
VARCHAR
)
RETURNS
SETOF
bridge_api_post
RETURNS
SETOF
bridge_api_post
AS
AS
$
function
$
$
function
$
...
@@ -271,7 +271,7 @@ $function$
...
@@ -271,7 +271,7 @@ $function$
language
plpgsql
STABLE
;
language
plpgsql
STABLE
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_payout_comments_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_payout_comments_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_by_payout_comments_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
)
CREATE
FUNCTION
bridge_get_ranked_post_by_payout_comments_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
,
in
_observer
VARCHAR
)
RETURNS
SETOF
bridge_api_post
RETURNS
SETOF
bridge_api_post
AS
AS
$
function
$
$
function
$
...
@@ -343,7 +343,7 @@ $function$
...
@@ -343,7 +343,7 @@ $function$
language
plpgsql
STABLE
;
language
plpgsql
STABLE
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_muted_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_muted_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_by_muted_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
)
CREATE
FUNCTION
bridge_get_ranked_post_by_muted_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
,
in
_observer
VARCHAR
)
RETURNS
SETOF
bridge_api_post
RETURNS
SETOF
bridge_api_post
AS
AS
$
function
$
$
function
$
...
@@ -416,7 +416,7 @@ $function$
...
@@ -416,7 +416,7 @@ $function$
language
plpgsql
STABLE
;
language
plpgsql
STABLE
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_hot_for_community
;
DROP
FUNCTION
IF
EXISTS
bridge_get_ranked_post_by_hot_for_community
;
CREATE
FUNCTION
bridge_get_ranked_post_by_hot_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
)
CREATE
FUNCTION
bridge_get_ranked_post_by_hot_for_community
(
in
_community
VARCHAR
,
in
_author
VARCHAR
,
in
_permlink
VARCHAR
,
in
_limit
SMALLINT
,
in
_observer
VARCHAR
)
RETURNS
SETOF
bridge_api_post
RETURNS
SETOF
bridge_api_post
AS
AS
$
function
$
$
function
$
...
...
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