mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
25 lines
691 B
C++
25 lines
691 B
C++
#pragma once
|
|
|
|
#include <Parsers/ASTFunction.h>
|
|
#include <Interpreters/InDepthNodeVisitor.h>
|
|
#include <Storages/StorageInMemoryMetadata.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Rewrites functions to subcolumns, if possible, to reduce amount of read data.
|
|
/// E.g. 'length(arr)' -> 'arr.size0', 'col IS NULL' -> 'col.null'
|
|
class RewriteFunctionToSubcolumnData
|
|
{
|
|
public:
|
|
using TypeToVisit = ASTFunction;
|
|
void visit(ASTFunction & function, ASTPtr & ast) const;
|
|
|
|
StorageMetadataPtr metadata_snapshot;
|
|
};
|
|
|
|
using RewriteFunctionToSubcolumnMatcher = OneTypeMatcher<RewriteFunctionToSubcolumnData>;
|
|
using RewriteFunctionToSubcolumnVisitor = InDepthNodeVisitor<RewriteFunctionToSubcolumnMatcher, true>;
|
|
|
|
}
|