Fixed bad code after merge [#CLICKHOUSE-3].

This commit is contained in:
Alexey Milovidov 2017-07-03 17:16:20 +03:00
parent 320b1e635b
commit a38bf1cbb3

View File

@ -45,17 +45,11 @@ enum ClusterOperation
/// lacks support of them for simplicity. Date, DateTime and Strings (eg. with the
/// Levenshtein distance) could be theoretically supported, as well as custom distance
/// functions (eg. Hamming distance) using Clickhouse lambdas.
template<typename CentroidsType>
template <typename CentroidsType>
class Centroids
{
public:
Centroids() {}
Centroids(const Centroids & c): centroids(c.centroids) {}
virtual ~Centroids() {}
bool fill (const IColumn* centroids_array_untyped)
bool fill(const IColumn* centroids_array_untyped)
{
const ColumnArray * centroids_array = typeid_cast<const ColumnArray *>(centroids_array_untyped);