blob: e4de766621a0440bffe5cf6178e3fc9776943dad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#pragma once
#include <Parsers/ASTWithAlias.h>
namespace DB
{
/** SELECT subquery
*/
class ASTSubquery : public ASTWithAlias
{
public:
// Stored the name when the subquery is defined in WITH clause. For example:
// WITH (SELECT 1) AS a SELECT * FROM a AS b; cte_name will be `a`.
std::string cte_name;
/** Get the text that identifies this element. */
String getID(char) const override { return "Subquery"; }
ASTPtr clone() const override
{
auto clone = std::make_shared<ASTSubquery>(*this);
clone->cloneChildren();
return clone;
}
void updateTreeHashImpl(SipHash & hash_state) const override;
String getAliasOrColumnName() const override;
String tryGetAlias() const override;
protected:
void formatImplWithoutAlias(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const override;
void appendColumnNameImpl(WriteBuffer & ostr) const override;
};
}
|