字段显示错误

CREATE TABLE IF NOT EXISTS aggregate_tbl (
	site_id LARGEINT NOT NULL COMMENT "id of site",
	`date` DATE NOT NULL COMMENT "time of event",
	city_code VARCHAR(20) COMMENT "city_code of user",
	pv BIGINT SUM DEFAULT "0" COMMENT "total page views",
	mt BIGINT MAX DEFAULT "0" COMMENT "max mt"
)
DISTRIBUTED BY HASH(site_id) BUCKETS 2
PROPERTIES (
	"replication_num" = "1"
);

INSERT INTO aggregate_tbl VALUES(1001,'2021-11-18 12:00:00.00',100,1,5);
INSERT INTO aggregate_tbl VALUES(1001,'2021-11-18 12:00:00.00',100,1,10);
INSERT INTO aggregate_tbl VALUES(1001,'2021-11-18 12:00:00.00',100,1,15);
INSERT INTO aggregate_tbl VALUES(1001,'2021-11-18 12:00:00.00',100,1,100);
INSERT INTO aggregate_tbl VALUES(1001,'2021-11-18 12:00:00.00',100,1,20);
INSERT INTO aggregate_tbl VALUES(1002,'2021-11-18 12:00:00.00',100,1,5);
INSERT INTO aggregate_tbl VALUES(1002,'2021-11-18 12:00:00.00',100,3,25);
INSERT INTO aggregate_tbl VALUES(1002,'2021-11-18 12:00:00.00',100,1,15);

这个site_id为什么显示是这样的呢

这个是fe,be的版本