21 lines
454 B
C++
21 lines
454 B
C++
#ifndef QUERY_EXECUTE_LIMIT_INTERMEDIATE_HPP
|
|
#define QUERY_EXECUTE_LIMIT_INTERMEDIATE_HPP
|
|
|
|
#include "matador/query/intermediates/executable_query.hpp"
|
|
|
|
namespace matador::query {
|
|
|
|
class query_execute_offset_intermediate;
|
|
|
|
class query_execute_limit_intermediate : public executable_query
|
|
{
|
|
public:
|
|
using executable_query::executable_query;
|
|
|
|
query_execute_offset_intermediate offset(size_t offset);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //QUERY_EXECUTE_LIMIT_INTERMEDIATE_HPP
|