mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-30032: EXPLAIN FORMAT=JSON output: print costs
Basic printout for join and table execution costs.
This commit is contained in:
@ -350,6 +350,12 @@ typedef struct st_join_table {
|
||||
/* Copy of POSITION::records_out, set by get_best_combination() */
|
||||
double records_out;
|
||||
|
||||
/*
|
||||
Copy of POSITION::read_time, set by get_best_combination(). The cost of
|
||||
accessing the table in course of the join execution.
|
||||
*/
|
||||
double join_read_time;
|
||||
|
||||
/* The selectivity of the conditions that can be pushed to the table */
|
||||
double cond_selectivity;
|
||||
|
||||
|
Reference in New Issue
Block a user