mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
14 lines
368 B
C++
14 lines
368 B
C++
#include <Interpreters/SubqueryForSet.h>
|
|
#include <Processors/QueryPlan/QueryPlan.h>
|
|
#include <Interpreters/PreparedSets.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
SubqueryForSet::SubqueryForSet() = default;
|
|
SubqueryForSet::~SubqueryForSet() = default;
|
|
SubqueryForSet::SubqueryForSet(SubqueryForSet &&) = default;
|
|
SubqueryForSet & SubqueryForSet::operator= (SubqueryForSet &&) = default;
|
|
|
|
}
|