mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #72032 from ClickHouse/backport/24.8/71966
Backport #71966 to 24.8: Fix partition pruning with binary monotonic function by second arg.
This commit is contained in:
commit
09906a1aae
@ -914,6 +914,8 @@ static FieldRef applyFunction(const FunctionBasePtr & func, const DataTypePtr &
|
||||
return {field.columns, field.row_idx, result_idx};
|
||||
}
|
||||
|
||||
DataTypePtr getArgumentTypeOfMonotonicFunction(const IFunctionBase & func);
|
||||
|
||||
/// Sequentially applies functions to the column, returns `true`
|
||||
/// if all function arguments are compatible with functions
|
||||
/// signatures, and none of the functions produce `NULL` output.
|
||||
@ -945,7 +947,7 @@ bool applyFunctionChainToColumn(
|
||||
}
|
||||
|
||||
// And cast it to the argument type of the first function in the chain
|
||||
auto in_argument_type = functions[0]->getArgumentTypes()[0];
|
||||
auto in_argument_type = getArgumentTypeOfMonotonicFunction(*functions[0]);
|
||||
if (canBeSafelyCasted(result_type, in_argument_type))
|
||||
{
|
||||
result_column = castColumnAccurate({result_column, result_type, ""}, in_argument_type);
|
||||
@ -974,7 +976,7 @@ bool applyFunctionChainToColumn(
|
||||
if (func->getArgumentTypes().empty())
|
||||
return false;
|
||||
|
||||
auto argument_type = func->getArgumentTypes()[0];
|
||||
auto argument_type = getArgumentTypeOfMonotonicFunction(*func);
|
||||
if (!canBeSafelyCasted(result_type, argument_type))
|
||||
return false;
|
||||
|
||||
@ -1384,6 +1386,18 @@ private:
|
||||
Kind kind = Kind::NO_CONST;
|
||||
};
|
||||
|
||||
DataTypePtr getArgumentTypeOfMonotonicFunction(const IFunctionBase & func)
|
||||
{
|
||||
const auto & arg_types = func.getArgumentTypes();
|
||||
if (const auto * func_ptr = typeid_cast<const FunctionWithOptionalConstArg *>(&func))
|
||||
{
|
||||
if (func_ptr->getKind() == FunctionWithOptionalConstArg::Kind::LEFT_CONST)
|
||||
return arg_types.at(1);
|
||||
}
|
||||
|
||||
return arg_types.at(0);
|
||||
}
|
||||
|
||||
|
||||
bool KeyCondition::isKeyPossiblyWrappedByMonotonicFunctions(
|
||||
const RPNBuilderTreeNode & node,
|
||||
|
@ -0,0 +1,11 @@
|
||||
1
|
||||
2
|
||||
Expression
|
||||
ReadFromMergeTree
|
||||
Indexes:
|
||||
PrimaryKey
|
||||
Keys:
|
||||
dateTrunc(\'hour\', ts)
|
||||
Condition: and((dateTrunc(\'hour\', ts) in (-Inf, 1731592800]), (dateTrunc(\'hour\', ts) in [1731506400, +Inf)))
|
||||
Parts: 1/1
|
||||
Granules: 1/1
|
@ -0,0 +1,19 @@
|
||||
SET session_timezone = 'Etc/UTC';
|
||||
|
||||
DROP TABLE IF EXISTS tt;
|
||||
CREATE TABLE tt
|
||||
(
|
||||
`id` Int64,
|
||||
`ts` DateTime
|
||||
)
|
||||
ENGINE = MergeTree()
|
||||
ORDER BY dateTrunc('hour', ts)
|
||||
SETTINGS index_granularity = 8192;
|
||||
|
||||
INSERT INTO tt VALUES (1, '2024-11-14 00:00:00'), (2, '2024-11-14 00:00:00');
|
||||
|
||||
SELECT id FROM tt PREWHERE ts BETWEEN toDateTime(1731506400) AND toDateTime(1731594420);
|
||||
|
||||
explain indexes=1, description=0 SELECT id FROM tt PREWHERE ts BETWEEN toDateTime(1731506400) AND toDateTime(1731594420);
|
||||
|
||||
DROP TABLE tt;
|
Loading…
Reference in New Issue
Block a user