mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
26 lines
627 B
C++
26 lines
627 B
C++
#pragma once
|
|
|
|
#include <Interpreters/InDepthNodeVisitor.h>
|
|
#include <Parsers/IAST.h>
|
|
|
|
namespace DB
|
|
{
|
|
class ASTFunction;
|
|
|
|
/// Rewrite possible 'arrayExists(func, arr)' to 'has(arr, elem)' to improve performance
|
|
/// arrayExists(x -> x = 1, arr) -> has(arr, 1)
|
|
class RewriteArrayExistsFunctionMatcher
|
|
{
|
|
public:
|
|
struct Data
|
|
{
|
|
};
|
|
|
|
static void visit(ASTPtr & ast, Data &);
|
|
static void visit(const ASTFunction &, ASTPtr & ast, Data &);
|
|
static bool needChildVisit(const ASTPtr & ast, const ASTPtr &);
|
|
};
|
|
|
|
using RewriteArrayExistsFunctionVisitor = InDepthNodeVisitor<RewriteArrayExistsFunctionMatcher, false>;
|
|
}
|