Skip to content
Snippets Groups Projects

New tests

Merged Mariusz Trela requested to merge mt-new-tests into develop
9 files
+ 39
107
Compare changes
  • Side-by-side
  • Inline
Files
9
DROP FUNCTION IF EXISTS bridge_get_account_posts_by_replies;
DROP FUNCTION IF EXISTS bridge_get_account_posts_by_replies;
CREATE FUNCTION bridge_get_account_posts_by_replies( in _account VARCHAR, in _author VARCHAR, in _permlink VARCHAR, in _limit SMALLINT )
CREATE FUNCTION bridge_get_account_posts_by_replies( in _account VARCHAR, in _author VARCHAR, in _permlink VARCHAR, in _limit SMALLINT, in _bridge_api BOOLEAN )
RETURNS SETOF bridge_api_post
RETURNS SETOF bridge_api_post
AS
AS
$function$
$function$
@@ -8,8 +8,18 @@ DECLARE
@@ -8,8 +8,18 @@ DECLARE
__account_id INT;
__account_id INT;
__post_id INT;
__post_id INT;
BEGIN
BEGIN
__account_id = find_account_id( _account, True );
IF NOT _bridge_api AND _permlink <> '' THEN
__post_id = find_comment_id( _author, _permlink, True );
-- find blogger account using parent author of page defining post
 
__post_id = find_comment_id( _author, _permlink, True );
 
SELECT pp.author_id INTO __account_id
 
FROM hive_posts hp
 
JOIN hive_posts pp ON hp.parent_id = pp.id
 
WHERE hp.id = __post_id;
 
IF __account_id = 0 THEN __account_id = NULL; END IF;
 
ELSE
 
__account_id = find_account_id( _account, True );
 
__post_id = find_comment_id( _author, _permlink, True );
 
END IF;
RETURN QUERY SELECT
RETURN QUERY SELECT
hp.id,
hp.id,
hp.author,
hp.author,
Loading