23 lines
560 B
C++
23 lines
560 B
C++
#ifndef QUERY_EXECUTE_WHERE_INTERMEDIATE_HPP
|
|
#define QUERY_EXECUTE_WHERE_INTERMEDIATE_HPP
|
|
|
|
#include "matador/query/intermediates/executable_query.hpp"
|
|
|
|
namespace matador::query {
|
|
|
|
class query_execute_limit_intermediate;
|
|
class query_execute_order_by_intermediate;
|
|
|
|
class query_execute_where_intermediate : public executable_query
|
|
{
|
|
public:
|
|
using executable_query::executable_query;
|
|
|
|
query_execute_limit_intermediate limit(size_t limit);
|
|
query_execute_order_by_intermediate order_by(const column &col);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //QUERY_EXECUTE_WHERE_INTERMEDIATE_HPP
|