mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
added IColumn::select
This commit is contained in:
parent
db23e0fcb4
commit
ce3b588de0
@ -75,7 +75,7 @@ public:
|
|||||||
|
|
||||||
path.push_back(Substream::DictionaryElements);
|
path.push_back(Substream::DictionaryElements);
|
||||||
if (auto stream = getter(path))
|
if (auto stream = getter(path))
|
||||||
dictionary_type->serializeBinaryBulk(*column_with_dictionary.getUnique(), *stream, offset, limit);
|
dictionary_type->serializeBinaryBulk(*column_with_dictionary.getUnique()->getNestedColumn(), *stream, offset, limit);
|
||||||
|
|
||||||
path.back() = Substream::DictionaryIndexes;
|
path.back() = Substream::DictionaryIndexes;
|
||||||
if (auto stream = getter(path))
|
if (auto stream = getter(path))
|
||||||
@ -94,7 +94,7 @@ public:
|
|||||||
|
|
||||||
path.push_back(Substream::DictionaryElements);
|
path.push_back(Substream::DictionaryElements);
|
||||||
if (ReadBuffer * stream = getter(path))
|
if (ReadBuffer * stream = getter(path))
|
||||||
dictionary_type->deserializeBinaryBulk(*column_with_dictionary.getUnique(), *stream, limit, 0);
|
dictionary_type->deserializeBinaryBulk(*column_with_dictionary.getUnique()->getNestedColumn(), *stream, limit, 0);
|
||||||
|
|
||||||
path.back() = Substream::DictionaryIndexes;
|
path.back() = Substream::DictionaryIndexes;
|
||||||
if (auto stream = getter(path))
|
if (auto stream = getter(path))
|
||||||
|
Loading…
Reference in New Issue
Block a user