mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
15 lines
358 B
C++
15 lines
358 B
C++
#pragma once
|
|
|
|
#include <base/types.h>
|
|
#include <Common/PODArray.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
UInt64 normalizedQueryHash(const char * begin, const char * end, bool keep_names);
|
|
UInt64 normalizedQueryHash(const String & query, bool keep_names);
|
|
void normalizeQueryToPODArray(const char * begin, const char * end, PaddedPODArray<UInt8> & res_data, bool keep_names);
|
|
|
|
}
|