21 lines
439 B
C++
21 lines
439 B
C++
#ifndef QUERY_SELECT_INTERMEDIATE_HPP
|
|
#define QUERY_SELECT_INTERMEDIATE_HPP
|
|
|
|
#include "matador/query/intermediates/query_intermediate.hpp"
|
|
|
|
namespace matador::query {
|
|
|
|
class query_from_intermediate;
|
|
|
|
class query_select_intermediate : public query_intermediate
|
|
{
|
|
public:
|
|
explicit query_select_intermediate(const std::vector<column>& columns);
|
|
|
|
query_from_intermediate from(const table& t);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //QUERY_SELECT_INTERMEDIATE_HPP
|