mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
Fix build.
This commit is contained in:
parent
d36e84cde9
commit
bbb89d10de
@ -531,13 +531,13 @@ private:
|
|||||||
auto * col_res = assert_cast<ColumnArray *>(res.get());
|
auto * col_res = assert_cast<ColumnArray *>(res.get());
|
||||||
|
|
||||||
if (col_arr_then && col_arr_else)
|
if (col_arr_then && col_arr_else)
|
||||||
conditional(GenericArraySource(*col_arr_then), GenericArraySource(*col_arr_else), GenericArraySink(*col_res, rows), cond_data);
|
conditional(GenericArraySource(*col_arr_then), GenericArraySource(*col_arr_else), GenericArraySink(col_res->getData(), col_res->getOffsets(), rows), cond_data);
|
||||||
else if (col_arr_then && col_arr_else_const)
|
else if (col_arr_then && col_arr_else_const)
|
||||||
conditional(GenericArraySource(*col_arr_then), ConstSource<GenericArraySource>(*col_arr_else_const), GenericArraySink(*col_res, rows), cond_data);
|
conditional(GenericArraySource(*col_arr_then), ConstSource<GenericArraySource>(*col_arr_else_const), GenericArraySink(col_res->getData(), col_res->getOffsets(), rows), cond_data);
|
||||||
else if (col_arr_then_const && col_arr_else)
|
else if (col_arr_then_const && col_arr_else)
|
||||||
conditional(ConstSource<GenericArraySource>(*col_arr_then_const), GenericArraySource(*col_arr_else), GenericArraySink(*col_res, rows), cond_data);
|
conditional(ConstSource<GenericArraySource>(*col_arr_then_const), GenericArraySource(*col_arr_else), GenericArraySink(col_res->getData(), col_res->getOffsets(), rows), cond_data);
|
||||||
else if (col_arr_then_const && col_arr_else_const)
|
else if (col_arr_then_const && col_arr_else_const)
|
||||||
conditional(ConstSource<GenericArraySource>(*col_arr_then_const), ConstSource<GenericArraySource>(*col_arr_else_const), GenericArraySink(*col_res, rows), cond_data);
|
conditional(ConstSource<GenericArraySource>(*col_arr_then_const), ConstSource<GenericArraySource>(*col_arr_else_const), GenericArraySink(col_res->getData(), col_res->getOffsets(), rows), cond_data);
|
||||||
else
|
else
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user