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

Method subquery

src/Interpreters/SelectQueryOptions.h:88–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

86 SelectQueryOptions copy() const { return *this; }
87
88 SelectQueryOptions subquery() const
89 {
90 SelectQueryOptions out = *this;
91 out.to_stage = QueryProcessingStage::Complete;
92 ++out.subquery_depth;
93 out.is_subquery = true;
94 return out;
95 }
96
97 SelectQueryOptions & analyze(bool dry_run = true)
98 {

Callers 6

executeMethod · 0.45
executeDumpQueryImplMethod · 0.45
getSampleBlockMethod · 0.45
executeFetchColumnsMethod · 0.45
interpretSubqueryFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected