mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
19 lines
391 B
C++
19 lines
391 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class IAST;
|
|
class ASTIdentifier;
|
|
class Context;
|
|
|
|
/** \brief if `expr` is not already ASTIdentifier evaluates it
|
|
* and replaces by a new ASTIdentifier with the result of evaluation as its name.
|
|
* `expr` must evaluate to a String type */
|
|
ASTIdentifier & reinterpretAsIdentifier(std::shared_ptr<IAST> & expr, const Context & context);
|
|
|
|
}
|