MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / dumpTreeImpl

Method dumpTreeImpl

src/Analyzer/IdentifierNode.cpp:25–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23{}
24
25void IdentifierNode::dumpTreeImpl(WriteBuffer & buffer, FormatState & format_state, size_t indent) const
26{
27 buffer << std::string(indent, ' ') << "IDENTIFIER id: " << format_state.getNodeId(this);
28
29 if (hasAlias())
30 buffer << ", alias: " << getAlias();
31
32 buffer << ", identifier: " << identifier.getFullName();
33
34 if (table_expression_modifiers)
35 {
36 buffer << ", ";
37 table_expression_modifiers->dump(buffer);
38 }
39}
40
41bool IdentifierNode::isEqualImpl(const IQueryTreeNode & rhs, CompareOptions) const
42{

Callers

nothing calls this directly

Calls 3

getNodeIdMethod · 0.45
getFullNameMethod · 0.45
dumpMethod · 0.45

Tested by

no test coverage detected