Skip to content
Snippets Groups Projects

Corrections related to bridge.get_discussion + some cleanup

Merged Andrzej Lisak requested to merge abw_get_discussion_mutes into develop
9 files
+ 22
21
Compare changes
  • Side-by-side
  • Inline
Files
9
  • [ABW]: find_account_id changed to be similar to find_comment_id (other routines like that will likely follow) - True means the check will be performed, but not when account is empty (that needs to be blocked/allowed in python code)
    get_discussion SQL function renamed to bridge_get_discussion
    added validation of observer in get_discussion
@@ -228,7 +228,7 @@ IF NOT EXISTS(SELECT data_type FROM information_schema.columns
UPDATE hive_posts hp
SET
tags_ids = tags.tags
tags_ids = tags.tags
FROM
(
SELECT
@@ -237,7 +237,7 @@ IF NOT EXISTS(SELECT data_type FROM information_schema.columns
FROM
hive_post_tags hpt
GROUP BY post_id
) as tags
) as tags
WHERE hp.id = tags.post_id;
ELSE
RAISE NOTICE 'SKIPPING hive_posts upgrade - adding a tags_ids column';
Loading