diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-10-08 14:26:14 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-10-08 14:26:14 +0400 |
commit | fda46df62071f54ebc4d806c6d9caf031d801150 (patch) | |
tree | ec7c5496c8e627fa46ba6b520adbc611417fce07 /sql/sql_select.h | |
parent | 98a8642fe827fd9ac16bdfaf556599fa509d4180 (diff) | |
download | mariadb-git-fda46df62071f54ebc4d806c6d9caf031d801150.tar.gz |
MDEV-3798: EXPLAIN UPDATE/DELETE
- if EXPLAIN DELETE prints "Deleting all rows", it should show the
expected number of rows in the rows column.
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r-- | sql/sql_select.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h index c615e855606..71760ea76f5 100644 --- a/sql/sql_select.h +++ b/sql/sql_select.h @@ -1852,6 +1852,7 @@ int print_explain_message_line(select_result_sink *result, uint8 options, uint select_number, const char *select_type, + ha_rows *rows, const char *message); void explain_append_mrr_info(QUICK_RANGE_SELECT *quick, String *res); int print_explain_row(select_result_sink *result, |