diff options
author | Sergei Petrunia <psergey@askmonty.org> | 2014-05-27 21:04:45 +0400 |
---|---|---|
committer | Sergei Petrunia <psergey@askmonty.org> | 2014-05-27 21:04:45 +0400 |
commit | 5cfd3270ec79238b27765af3062ae7d97f6f06d0 (patch) | |
tree | 2bfa2bb941567c1eb7f81d7b86962973e6fbf1c6 /sql/sql_class.h | |
parent | 0925ab9d88f4328810d25392333a4cac11c6e694 (diff) | |
download | mariadb-git-10.1-explain-json.tar.gz |
MDEV-6109: EXPLAIN JSON10.1-explain-json
- First code, "EXPLAIN FORMAT=JSON stmt" and "ANALYZE FORMAT=JSON stmt"
work for basic queries. Complex constructs (e.g subqueries, etc) not
yet supported.
- No test infrastructure yet
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index a7991952a79..5118972911e 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -3059,6 +3059,7 @@ public: CHANGED_TABLE_LIST * changed_table_dup(const char *key, long key_length); int send_explain_fields(select_result *result); void make_explain_field_list(List<Item> &field_list); + void make_explain_json_field_list(List<Item> &field_list); /** Clear the current error, if any. We do not clear is_fatal_error or is_fatal_sub_stmt_error since we |