This commit is contained in:
Andrey Mironov 2015-09-11 18:11:27 +03:00
parent 9f32c9b9cf
commit 739a3dae8b

View File

@ -33,7 +33,8 @@ namespace DB
class MergeTreeWhereOptimizer
{
static constexpr auto threshold = 10;
static constexpr auto max_columns_relative_size = 0.25f;
/// Решили убрать ограничение в виду отсутствия штрафа по скорости на перенос в PREWHERE
static constexpr auto max_columns_relative_size = 1.0f;
static constexpr auto and_function_name = "and";
static constexpr auto equals_function_name = "equals";
static constexpr auto array_join_function_name = "arrayJoin";