Fix bit agg function add redundant cast

This commit is contained in:
hezuojiao
2024-03-06 10:15:19 +00:00
committed by ob-robot
parent c27c4648bc
commit 485f7cecfb
2 changed files with 12 additions and 6 deletions

View File

@ -1395,7 +1395,8 @@ inline bool ob_is_unsigned_type(ObObjType type)
|| ObYearType == type
|| ObUFloatType == type
|| ObUDoubleType == type
|| ObUNumberType == type;
|| ObUNumberType == type
|| ObBitType == type;
}
bool is_match_alter_integer_column_online_ddl_rules(const common::ObObjMeta& src_meta,
const common::ObObjMeta& dst_meta);