MySQL 8.0.37
Source Code Documentation
opt_explain_json.h
Go to the documentation of this file.
1/* Copyright (c) 2011, 2024, Oracle and/or its affiliates.
2
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License, version 2.0,
5 as published by the Free Software Foundation.
6
7 This program is designed to work with certain software (including
8 but not limited to OpenSSL) that is licensed under separate terms,
9 as designated in a particular file or component or in included license
10 documentation. The authors of MySQL hereby grant you an additional
11 permission to link the program and your derivative works with the
12 separately licensed software that they have either included with
13 the program or referenced in the documentation.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License, version 2.0, for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
23
24#ifndef OPT_EXPLAIN_FORMAT_JSON_INCLUDED
25#define OPT_EXPLAIN_FORMAT_JSON_INCLUDED
26
29
30class Query_result;
32
34class context;
35}
36
37/**
38 Formatter class for EXPLAIN FORMAT=JSON output
39*/
40
42 public:
44
47
48 bool is_hierarchical() const override { return true; }
49
50 /// Format versions newer than Linear are always going to be iterator-based.
51 bool is_iterator_based() const override {
53 }
54
55 bool send_headers(Query_result *result) override;
57 const Explain_format_flags *flags) override;
58 bool end_context(enum_parsing_context context) override;
59 bool flush_entry() override { return false; }
60 qep_row *entry() override;
61
62 /* Convert Json object to string */
63 std::string ExplainJsonToString(Json_object *json) override;
64
65 private:
68};
69
70#endif // OPT_EXPLAIN_FORMAT_JSON_INCLUDED
Formatter class for EXPLAIN FORMAT=JSON output.
Definition: opt_explain_json.h:41
bool flush_entry() override
Flush TABLE/JOIN_TAB property set.
Definition: opt_explain_json.h:59
bool end_context(enum_parsing_context context) override
Leave the current context.
Definition: opt_explain_json.cc:2033
bool is_iterator_based() const override
Format versions newer than Linear are always going to be iterator-based.
Definition: opt_explain_json.h:51
FormatVersion
Definition: opt_explain_json.h:43
qep_row * entry() override
Get a pointer to the current TABLE/JOIN_TAB property set.
Definition: opt_explain_json.cc:1650
bool send_headers(Query_result *result) override
Send EXPLAIN header item(s) to output stream.
Definition: opt_explain_json.cc:2082
bool begin_context(enum_parsing_context context, Query_expression *subquery, const Explain_format_flags *flags) override
Enter a specified context.
Definition: opt_explain_json.cc:1652
std::string ExplainJsonToString(Json_object *json) override
Convert Json object to string.
Definition: opt_explain_json.cc:2106
opt_explain_json_namespace::context * current_context
current tree node
Definition: opt_explain_json.h:66
FormatVersion m_version
Definition: opt_explain_json.h:67
Explain_format_JSON(FormatVersion version)
Definition: opt_explain_json.h:45
bool is_hierarchical() const override
A hierarchical text or a plain table.
Definition: opt_explain_json.h:48
Definition: opt_explain_format.h:449
Base class for structured and hierarchical EXPLAIN output formatters.
Definition: opt_explain_format.h:504
Represents a JSON container value of type "object" (ECMA), type J_OBJECT here.
Definition: json_dom.h:373
This class represents a query expression (one query block or several query blocks combined with UNION...
Definition: sql_lex.h:623
Definition: query_result.h:54
Base class for all intermediate tree nodes.
Definition: opt_explain_json.cc:220
Helper class for table property buffering.
Definition: opt_explain_format.h:148
Fido Client Authentication nullptr
Definition: fido_client_plugin.cc:222
static int flags[50]
Definition: hp_test1.cc:40
Definition: opt_explain_format.h:131
EXPLAIN FORMAT=<format> <command>.
enum_parsing_context
Names for different query parse tree parts.
Definition: parse_tree_node_base.h:58
required uint64 version
Definition: replication_group_member_actions.proto:41
Definition: result.h:30