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
387c32e1ec
commit
e6e29eef29
@ -257,17 +257,17 @@ ColumnPtr ColumnVector<T>::indexImpl(const PaddedPODArray<Type> & indexes, size_
|
||||
return std::move(res);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
template <>
|
||||
template <typename T>
|
||||
ColumnPtr ColumnVector<T>::indexImpl<UInt8>(const PaddedPODArray<UInt8> & indexes, size_t limit) const;
|
||||
template <typename T>
|
||||
template <>
|
||||
template <typename T>
|
||||
ColumnPtr ColumnVector<T>::indexImpl<UInt16>(const PaddedPODArray<UInt16> & indexes, size_t limit) const;
|
||||
template <typename T>
|
||||
template <>
|
||||
template <typename T>
|
||||
ColumnPtr ColumnVector<T>::indexImpl<UInt32>(const PaddedPODArray<UInt32> & indexes, size_t limit) const;
|
||||
template <typename T>
|
||||
template <>
|
||||
template <typename T>
|
||||
ColumnPtr ColumnVector<T>::indexImpl<UInt64>(const PaddedPODArray<UInt64> & indexes, size_t limit) const;
|
||||
|
||||
template <typename T>
|
||||
|
Loading…
Reference in New Issue
Block a user