mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 13:42:02 +00:00
31 lines
680 B
C++
31 lines
680 B
C++
#pragma once
|
|
|
|
#include <Core/Names.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class ASTQueryParameter;
|
|
|
|
/// Visit substitutions in a query, replace ASTQueryParameter with ASTLiteral.
|
|
/// Rebuild ASTIdentifiers if some parts are ASTQueryParameter.
|
|
class ReplaceQueryParameterVisitor
|
|
{
|
|
public:
|
|
ReplaceQueryParameterVisitor(const NameToNameMap & parameters)
|
|
: query_parameters(parameters)
|
|
{}
|
|
|
|
void visit(ASTPtr & ast);
|
|
|
|
private:
|
|
const NameToNameMap & query_parameters;
|
|
const String & getParamValue(const String & name);
|
|
void visitIdentifier(ASTPtr & ast);
|
|
void visitQueryParameter(ASTPtr & ast);
|
|
void visitChildren(ASTPtr & ast);
|
|
};
|
|
|
|
}
|