19 lines
400 B
C++
19 lines
400 B
C++
#ifndef QUERY_DROP_INTERMEDIATE_HPP
|
|
#define QUERY_DROP_INTERMEDIATE_HPP
|
|
|
|
#include "matador/query/intermediates/executable_query.hpp"
|
|
|
|
namespace matador::query {
|
|
|
|
class query_drop_intermediate : query_intermediate {
|
|
public:
|
|
query_drop_intermediate();
|
|
|
|
executable_query table(const table &tab);
|
|
executable_query schema(const std::string &schema_name);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //QUERY_DROP_INTERMEDIATE_HPP
|