mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Add comments
This commit is contained in:
parent
c325f08e79
commit
80291ec3f2
@ -392,6 +392,8 @@ size_t RPNBuilderFunctionTreeNode::getArgumentsSize() const
|
||||
}
|
||||
else
|
||||
{
|
||||
// indexHint arguments are stored inside of `FunctionIndexHint` class,
|
||||
// because they are used only for index analysis.
|
||||
if (dag_node->function_base->getName() == "indexHint")
|
||||
{
|
||||
const auto * adaptor = typeid_cast<const FunctionToFunctionBaseAdaptor *>(dag_node->function_base.get());
|
||||
@ -418,6 +420,8 @@ RPNBuilderTreeNode RPNBuilderFunctionTreeNode::getArgumentAt(size_t index) const
|
||||
}
|
||||
else
|
||||
{
|
||||
// indexHint arguments are stored inside of `FunctionIndexHint` class,
|
||||
// because they are used only for index analysis.
|
||||
if (dag_node->function_base->getName() == "indexHint")
|
||||
{
|
||||
const auto * adaptor = typeid_cast<const FunctionToFunctionBaseAdaptor *>(dag_node->function_base.get());
|
||||
|
Loading…
Reference in New Issue
Block a user