From 1cdfca94c3fdc8255592bcf247205735f6e62c6d Mon Sep 17 00:00:00 2001 From: Bartek Wrona <wrona@syncad.com> Date: Wed, 12 Aug 2020 13:27:11 +0200 Subject: [PATCH] Changed type of children column to the int type (smallint is too short) --- hive/db/schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hive/db/schema.py b/hive/db/schema.py index 8017b60f9..3cd20360a 100644 --- a/hive/db/schema.py +++ b/hive/db/schema.py @@ -81,7 +81,7 @@ def build_metadata(): sa.Column('is_valid', BOOLEAN, nullable=False, server_default='1'), sa.Column('promoted', sa.types.DECIMAL(10, 3), nullable=False, server_default='0'), - sa.Column('children', SMALLINT, nullable=False, server_default='0'), + sa.Column('children', sa.Integer, nullable=False, server_default='0'), # basic/extended-stats sa.Column('author_rep', sa.Float(precision=6), nullable=False, server_default='0'), @@ -688,7 +688,7 @@ def setup(db): JOIN tblChild ON p.Parent_Id = tblChild.Id WHERE NOT p.is_deleted ) - SELECT queried_parent, cast(count(1) AS smallint) AS children_count + SELECT queried_parent, cast(count(1) AS int) AS children_count FROM tblChild GROUP BY queried_parent ) data_source -- GitLab