mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Miscellaneous [#CLICKHOUSE-2].
This commit is contained in:
parent
e611e1cc66
commit
a3fa44e71a
@ -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>;
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
set +e
|
set +e
|
||||||
|
|
||||||
function get_revision {
|
function get_revision {
|
||||||
|
Loading…
Reference in New Issue
Block a user