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

Method subquery

src/Interpreters/SelectQueryOptions.h:93–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91 SelectQueryOptions copy() const { return *this; }
92
93 SelectQueryOptions subquery() const
94 {
95 SelectQueryOptions out = *this;
96 out.to_stage = QueryProcessingStage::Complete;
97 ++out.subquery_depth;
98 out.is_subquery = true;
99 return out;
100 }
101
102 SelectQueryOptions & createView(bool value = true)
103 {

Callers 12

getIndexAnalysisMethod · 0.80
CONV_FNFunction · 0.80
getSampleBlockMethod · 0.80
makeSetMethod · 0.80
executeFetchColumnsMethod · 0.80
interpretSubqueryFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected