mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
added IColumn::select
This commit is contained in:
parent
ba0a5af437
commit
db23e0fcb4
@ -312,7 +312,7 @@ void PreparedFunctionImpl::execute(Block & block, const ColumnNumbers & args, si
|
||||
throw Exception("Expected ColumnWithDictionary, got" + res_col.column->getName(),
|
||||
ErrorCodes::LOGICAL_ERROR);
|
||||
|
||||
auto & mut_col_with_dict = static_cast<ColumnWithDictionary &>(*col_with_dict);
|
||||
auto & mut_col_with_dict = const_cast<ColumnWithDictionary &>(*col_with_dict);
|
||||
|
||||
if (indexes)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user