Skip to content
Snippets Groups Projects
Commit b4cd8e01 authored by Jason Salyers's avatar Jason Salyers
Browse files

[JES] Validate observer account exists. I'm not sure if we need this. I...

[JES] Validate observer account exists. I'm not sure if we need this. I suppose it could impact performance if the account didn't exist in the database?
parent 3086f3cd
No related branches found
No related tags found
2 merge requests!456Release candidate v1 24,!421Jsalyers blacklist v2
...@@ -154,7 +154,7 @@ DECLARE ...@@ -154,7 +154,7 @@ DECLARE
__observer_id INT; __observer_id INT;
BEGIN BEGIN
__post_id = find_comment_id( _author, _permlink, True ); __post_id = find_comment_id( _author, _permlink, True );
__observer_id = find_account_id(_observer, False); __observer_id = find_account_id(_observer, True);
IF __post_id <> 0 THEN IF __post_id <> 0 THEN
SELECT ( hp.payout + hp.pending_payout ) INTO __payout_limit FROM hive_posts hp WHERE hp.id = __post_id; SELECT ( hp.payout + hp.pending_payout ) INTO __payout_limit FROM hive_posts hp WHERE hp.id = __post_id;
END IF; END IF;
......
...@@ -383,7 +383,7 @@ BEGIN ...@@ -383,7 +383,7 @@ BEGIN
IF __post_id <> 0 THEN IF __post_id <> 0 THEN
SELECT ( hp.payout + hp.pending_payout ) INTO __payout_limit FROM hive_posts hp WHERE hp.id = __post_id; SELECT ( hp.payout + hp.pending_payout ) INTO __payout_limit FROM hive_posts hp WHERE hp.id = __post_id;
END IF; END IF;
__observer_id = find_account_id(_observer, False); __observer_id = find_account_id(_observer, True);
RETURN QUERY SELECT RETURN QUERY SELECT
hp.id, hp.id,
hp.author, hp.author,
......
...@@ -166,7 +166,7 @@ BEGIN ...@@ -166,7 +166,7 @@ BEGIN
SELECT ( hp.payout + hp.pending_payout ) INTO __payout_limit FROM hive_posts hp WHERE hp.id = __post_id; SELECT ( hp.payout + hp.pending_payout ) INTO __payout_limit FROM hive_posts hp WHERE hp.id = __post_id;
END IF; END IF;
__hive_tag = ARRAY_APPEND( __hive_tag, find_tag_id( _tag, True ) ); __hive_tag = ARRAY_APPEND( __hive_tag, find_tag_id( _tag, True ) );
__observer_id = find_account_id(_observer, False); __observer_id = find_account_id(_observer, True);
RETURN QUERY SELECT RETURN QUERY SELECT
hp.id, hp.id,
hp.author, hp.author,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment