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

Method updateTreeHashImpl

src/Analyzer/IdentifierNode.cpp:47–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45}
46
47void IdentifierNode::updateTreeHashImpl(HashState & state, CompareOptions) const
48{
49 const auto & identifier_name = identifier.getFullName();
50 state.update(identifier_name.size());
51 state.update(identifier_name);
52
53 if (table_expression_modifiers)
54 table_expression_modifiers->updateTreeHash(state);
55}
56
57QueryTreeNodePtr IdentifierNode::cloneImpl() const
58{

Callers

nothing calls this directly

Calls 4

getFullNameMethod · 0.45
updateMethod · 0.45
sizeMethod · 0.45
updateTreeHashMethod · 0.45

Tested by

no test coverage detected