diff --git a/hive/indexer/blocks.py b/hive/indexer/blocks.py index df214f0ea4b7b04feaf6d10c065397db49c78d07..e114baa4c87a35b947af1b4f26d31361ea216d68 100644 --- a/hive/indexer/blocks.py +++ b/hive/indexer/blocks.py @@ -397,6 +397,6 @@ class Blocks: update_hot_and_tranding_for_block_range( first_block, last_block ) update_active_starting_from_posts_on_block( first_block, last_block ) - DB.query("SELECT update_hive_posts_children_count({}, {})".format(first_block, last_block)) - DB.query("SELECT update_hive_posts_root_id({},{})".format(first_block, last_block)) - DB.query("SELECT update_hive_posts_api_helper({},{})".format(first_block, last_block)) + DB.query_no_return("SELECT update_hive_posts_children_count({}, {})".format(first_block, last_block)) + DB.query_no_return("SELECT update_hive_posts_root_id({},{})".format(first_block, last_block)) + DB.query_no_return("SELECT update_hive_posts_api_helper({},{})".format(first_block, last_block))