Rename ordered->sorted

This commit is contained in:
jeremy 2022-10-28 12:52:37 +02:00
parent 79c2ae206f
commit d0b8b27c29

View File

@ -493,9 +493,9 @@ msgs::ReadResponses HandleReadWithOrderBy(msgs::ExpandOneRequest &&req, Shard::A
auto edge_filler = InitializeEdgeFillerFunction(req);
auto vertex_iterable = acc.Vertices(View::OLD);
const auto ordered_vertices = OrderByElements<VertexAccessor>(acc, dba, vertex_iterable, req.order_by);
const auto sorted_vertices = OrderByElements<VertexAccessor>(acc, dba, vertex_iterable, req.order_by);
for (const auto &ordered_vertice : ordered_vertices) {
for (const auto &ordered_vertice : sorted_vertices) {
// Get Vertex acc
auto src_vertex_acc = ordered_vertice.object_acc;