mirror of
https://github.com/MariaDB/server.git
synced 2026-04-27 10:45:30 +02:00
EXPLAIN FORMAT=JSON: Add support for single-table UPDATE/DELETE.
This commit is contained in:
parent
461dbd80d2
commit
d5fbfb9a93
9 changed files with 409 additions and 197 deletions
|
|
@ -2303,8 +2303,9 @@ public:
|
|||
void set_impossible_where() { impossible_where= true; }
|
||||
void set_no_partitions() { no_partitions= true; }
|
||||
|
||||
void save_explain_data(Explain_query *query);
|
||||
void save_explain_data_intern(Explain_query *query, Explain_update *eu);
|
||||
void save_explain_data(MEM_ROOT *mem_root, Explain_query *query);
|
||||
void save_explain_data_intern(MEM_ROOT *mem_root, Explain_query *query,
|
||||
Explain_update *eu);
|
||||
|
||||
virtual ~Update_plan() {}
|
||||
|
||||
|
|
@ -2335,7 +2336,7 @@ public:
|
|||
scanned_rows= rows_arg;
|
||||
}
|
||||
|
||||
void save_explain_data(Explain_query *query);
|
||||
void save_explain_data(MEM_ROOT *mem_root, Explain_query *query);
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue