[refactor](decimal) change type name Decimal128 to Decimal128V2, Decimal128I to Decimal128V3 to avoid confusion (#29265)

change type name Decimal128 to Decimal128V2, Decimal128I to Decimal128V3 to avoid confusion
This commit is contained in:
TengJianPing
2023-12-29 10:11:44 +08:00
committed by GitHub
parent d2dc12bed5
commit a525d5c5a3
73 changed files with 502 additions and 498 deletions

View File

@ -111,11 +111,11 @@ TEST_F(TableFunctionTest, vexplode_outer) {
// explode_outer(Array<Decimal>)
{
InputTypeSet input_types = {TypeIndex::Array, TypeIndex::Decimal128};
InputTypeSet input_types = {TypeIndex::Array, TypeIndex::Decimal128V2};
Array vec = {ut_type::DECIMALFIELD(17014116.67), ut_type::DECIMALFIELD(-17014116.67)};
InputDataSet input_set = {{Null()}, {Array()}, {vec}};
InputTypeSet output_types = {TypeIndex::Decimal128};
InputTypeSet output_types = {TypeIndex::Decimal128V2};
InputDataSet output_set = {{Null()},
{Null()},
{ut_type::DECIMAL(17014116.67)},