Access to a query-specific context value in ecs_order_by_action_t
and/or ecs_sort_table_action_t
#1222
Labels
enhancement
New feature or request
Describe the problem you are trying to solve.
Currently
ecs_order_by_action_t
is being called without any context value, making it harder to use with bindings.Describe the solution you'd like
Extending
ecs_query_desc_t
withvoid *order_by_ctx;
andecs_ctx_free_t order_by_ctx_free;
fields, with context being passed to order callbacks, similar to already existingvoid *group_by_ctx;
.The text was updated successfully, but these errors were encountered: