mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
14 lines
386 B
C++
14 lines
386 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 &&) noexcept = default;
|
|
SubqueryForSet & SubqueryForSet::operator= (SubqueryForSet &&) noexcept = default;
|
|
|
|
}
|