2017-04-01 09:19:00 +00:00
|
|
|
#include <Common/SipHash.h>
|
2017-11-24 13:55:31 +00:00
|
|
|
#include <Common/FieldVisitors.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Parsers/ASTLiteral.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
2015-06-29 05:46:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2019-01-23 13:20:03 +00:00
|
|
|
void ASTLiteral::updateTreeHashImpl(SipHash & hash_state) const
|
|
|
|
{
|
|
|
|
const char * prefix = "Literal_";
|
|
|
|
hash_state.update(prefix, strlen(prefix));
|
|
|
|
applyVisitor(FieldVisitorHash(hash_state), value);
|
|
|
|
}
|
|
|
|
|
2018-06-27 16:34:11 +00:00
|
|
|
void ASTLiteral::appendColumnNameImpl(WriteBuffer & ostr) const
|
2015-06-29 05:46:55 +00:00
|
|
|
{
|
2020-03-19 01:15:01 +00:00
|
|
|
/// 100 - just arbitrary value.
|
2020-03-24 15:56:46 +00:00
|
|
|
constexpr auto min_elements_for_hashing = 100;
|
2020-03-19 01:15:01 +00:00
|
|
|
|
|
|
|
/// Special case for very large arrays and tuples. Instead of listing all elements, will use hash of them.
|
2017-04-01 07:20:54 +00:00
|
|
|
/// (Otherwise column name will be too long, that will lead to significant slowdown of expression analysis.)
|
2020-03-19 01:15:01 +00:00
|
|
|
auto type = value.getType();
|
2020-03-24 15:56:46 +00:00
|
|
|
if ((type == Field::Types::Array && value.get<const Array &>().size() > min_elements_for_hashing)
|
|
|
|
|| (type == Field::Types::Tuple && value.get<const Tuple &>().size() > min_elements_for_hashing))
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
SipHash hash;
|
|
|
|
applyVisitor(FieldVisitorHash(hash), value);
|
|
|
|
UInt64 low, high;
|
|
|
|
hash.get128(low, high);
|
2015-06-29 05:46:55 +00:00
|
|
|
|
2020-03-19 01:15:01 +00:00
|
|
|
writeCString(type == Field::Types::Array ? "__array_" : "__tuple_", ostr);
|
2018-06-27 16:34:11 +00:00
|
|
|
writeText(low, ostr);
|
|
|
|
ostr.write('_');
|
|
|
|
writeText(high, ostr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
String column_name = applyVisitor(FieldVisitorToString(), value);
|
|
|
|
writeString(column_name, ostr);
|
|
|
|
}
|
2015-06-29 05:46:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|