mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
fix pr's bug @31839
This commit is contained in:
parent
56307bb2fa
commit
fb159c0227
@ -117,7 +117,7 @@ public:
|
||||
+ " has signature: transform(T, Array(T), Array(U), U) -> U; or transform(T, Array(T), Array(T)) -> T; where T and U are types.",
|
||||
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT};
|
||||
|
||||
return type_arr_to_nested;
|
||||
return getLeastSupertype({type_x, type_arr_to_nested});
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
SELECT transform(1, [1], [toDecimal32(1, 2)]); -- { serverError 43 }
|
||||
SELECT transform(1, [1], [toDecimal32(1, 2)]); -- { serverError 44 }
|
||||
SELECT transform(toDecimal32(number, 2), [toDecimal32(3, 2)], [toDecimal32(30, 2)]) FROM system.numbers LIMIT 10;
|
||||
SELECT transform(toDecimal32(number, 2), [toDecimal32(3, 2)], [toDecimal32(30, 2)], toDecimal32(1000, 2)) FROM system.numbers LIMIT 10;
|
||||
SELECT transform(number, [3, 5, 11], [toDecimal32(30, 2), toDecimal32(50, 2), toDecimal32(70,2)], toDecimal32(1000, 2)) FROM system.numbers LIMIT 10;
|
||||
|
Loading…
Reference in New Issue
Block a user