Miscellaneous [#CLICKHOUSE-2].

This commit is contained in:
Alexey Milovidov 2017-11-12 03:46:22 +03:00
parent e611e1cc66
commit a3fa44e71a
3 changed files with 15 additions and 14 deletions

View File

@ -1,5 +1,7 @@
#pragma once #pragma once
#include <boost/noncopyable.hpp>
#include <Common/HyperLogLogCounter.h> #include <Common/HyperLogLogCounter.h>
#include <Common/HashTable/SmallTable.h> #include <Common/HashTable/SmallTable.h>
#include <Common/MemoryTracker.h> #include <Common/MemoryTracker.h>
@ -21,7 +23,7 @@ template
UInt8 K, UInt8 K,
typename Hash = IntHash32<Key>, typename Hash = IntHash32<Key>,
typename DenominatorType = double> typename DenominatorType = double>
class HyperLogLogWithSmallSetOptimization class HyperLogLogWithSmallSetOptimization : private boost::noncopyable
{ {
private: private:
using Small = SmallSet<Key, small_set_size>; using Small = SmallSet<Key, small_set_size>;

View File

@ -1,4 +1,3 @@
set +e set +e
function get_revision { function get_revision {