13 lines
417 B
C++
13 lines
417 B
C++
#include "matador/query/intermediates/query_group_by_intermediate.hpp"
|
|
#include "matador/query/intermediates/query_order_by_intermediate.hpp"
|
|
|
|
#include "matador/query/internal/query_parts.hpp"
|
|
|
|
namespace matador::query {
|
|
|
|
query_order_by_intermediate query_group_by_intermediate::order_by(const column &col) {
|
|
context_->parts.push_back(std::make_unique<internal::query_order_by_part>(col));
|
|
return {context_};
|
|
}
|
|
|
|
} |