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

Method dump

src/Analyzer/TableExpressionModifiers.cpp:17–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15{
16
17void TableExpressionModifiers::dump(WriteBuffer & buffer) const
18{
19 buffer << "final: " << has_final;
20
21 if (sample_size_ratio)
22 buffer << ", sample_size: " << ASTSampleRatio::toString(*sample_size_ratio);
23
24 if (sample_offset_ratio)
25 buffer << ", sample_offset: " << ASTSampleRatio::toString(*sample_offset_ratio);
26
27 if (stream_settings)
28 {
29 buffer << ", stream";
30 if (stream_settings->cursor_tree)
31 buffer << " cursor";
32 }
33}
34
35void TableExpressionModifiers::updateTreeHash(SipHash & hash_state) const
36{

Callers

nothing calls this directly

Calls 1

toStringFunction · 0.70

Tested by

no test coverage detected