mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-10844: EXPLAIN FORMAT=JSON doesn't show order direction for filesort
Currently explain format=json does not show the order direction of fields used during filesort. This patch would remove this limitation
This commit is contained in:
@ -282,6 +282,7 @@ public:
|
||||
class Explain_aggr_filesort : public Explain_aggr_node
|
||||
{
|
||||
List<Item> sort_items;
|
||||
List<ORDER::enum_order> sort_directions;
|
||||
public:
|
||||
enum_explain_aggr_node_type get_type() { return AGGR_OP_FILESORT; }
|
||||
Filesort_tracker tracker;
|
||||
|
Reference in New Issue
Block a user