19 lines
505 B
C++
19 lines
505 B
C++
#include "matador/query/intermediates/query_drop_intermediate.hpp"
|
|
|
|
#include "matador/query/internal/query_parts.hpp"
|
|
|
|
#include "matador/query/query_data.hpp"
|
|
|
|
namespace matador::query {
|
|
|
|
query_drop_intermediate::query_drop_intermediate() {
|
|
context_->parts.push_back(std::make_unique<internal::query_drop_part>());
|
|
}
|
|
|
|
executable_query query_drop_intermediate::table(const class table &tab) {
|
|
context_->parts.push_back(std::make_unique<internal::query_drop_table_part>(tab));
|
|
return {context_};
|
|
}
|
|
|
|
}
|