MySQL 8.3.0
Source Code Documentation
table_esms_by_thread_by_event_name.h
Go to the documentation of this file.
1/* Copyright (c) 2010, 2023, 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 also distributed 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 included with MySQL.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License, version 2.0, for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
22
23#ifndef TABLE_ESMS_BY_THREAD_BY_EVENT_NAME_H
24#define TABLE_ESMS_BY_THREAD_BY_EVENT_NAME_H
25
26/**
27 @file storage/perfschema/table_esms_by_thread_by_event_name.h
28 Table EVENTS_STATEMENTS_SUMMARY_BY_THREAD_BY_EVENT_NAME (declarations).
29*/
30
31#include <sys/types.h>
32
33#include "my_base.h"
34#include "my_inttypes.h"
38
39class Field;
40class Plugin_table;
42struct PFS_thread;
43struct TABLE;
44struct THR_LOCK;
45
46/**
47 @addtogroup performance_schema_tables
48 @{
49*/
50
52 public:
55 m_key_1("THREAD_ID"),
56 m_key_2("EVENT_NAME") {}
57
59
60 bool match(PFS_thread *pfs);
61 bool match(PFS_statement_class *klass);
62
63 private:
66};
67
68/**
69 A row of table
70 PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_THREAD_BY_EVENT_NAME.
71*/
73 /** Column THREAD_ID. */
75 /** Column EVENT_NAME. */
77 /** Columns COUNT_STAR, SUM/MIN/AVG/MAX TIMER_WAIT. */
79};
80
81/**
82 Position of a cursor on
83 PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_THREAD_BY_EVENT_NAME.
84 Index 1 on thread (0 based).
85 Index 2 on statement class (1 based).
86*/
90
91 inline void reset() {
92 m_index_1 = 0;
93 m_index_2 = 1;
94 }
95
96 inline void next_thread() {
97 m_index_1++;
98 m_index_2 = 1;
99 }
100
101 inline void next_statement() { m_index_2++; }
102
103 inline bool has_more_thread() {
105 }
106};
107
108/** Table PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_THREAD_BY_EVENT_NAME.
109 */
111 public:
112 /** Table share */
115 static int delete_all_rows();
116 static ha_rows get_row_count();
117
118 void reset_position() override;
119
120 int rnd_init(bool scan) override;
121 int rnd_next() override;
122 int rnd_pos(const void *pos) override;
123
124 int index_init(uint idx, bool sorted) override;
125 int index_next() override;
126
127 protected:
128 int read_row_values(TABLE *table, unsigned char *buf, Field **fields,
129 bool read_all) override;
130
132
133 public:
135
136 protected:
137 int make_row(PFS_thread *thread, PFS_statement_class *klass);
138
139 private:
140 /** Table share lock. */
142 /** Table definition. */
144
145 /** Current row. */
147 /** Current position. */
149 /** Next position. */
151
153};
154
155/** @} */
156#endif
Definition: field.h:574
size_t get_row_count()
Definition: pfs_buffer_container.h:464
Definition: pfs_engine_table.h:299
An abstract PERFORMANCE_SCHEMA table.
Definition: pfs_engine_table.h:69
Definition: table_esms_by_thread_by_event_name.h:51
PFS_index_esms_by_thread_by_event_name()
Definition: table_esms_by_thread_by_event_name.h:53
~PFS_index_esms_by_thread_by_event_name() override=default
PFS_key_thread_id m_key_1
Definition: table_esms_by_thread_by_event_name.h:64
bool match(PFS_thread *pfs)
Definition: table_esms_by_thread_by_event_name.cc:103
PFS_key_event_name m_key_2
Definition: table_esms_by_thread_by_event_name.h:65
Definition: table_helper.h:1458
Definition: table_helper.h:1278
Class to hold information regarding a table to be created on behalf of a plugin.
Definition: plugin_table.h:39
Table PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_THREAD_BY_EVENT_NAME.
Definition: table_esms_by_thread_by_event_name.h:110
int rnd_pos(const void *pos) override
Fetch a row by position.
Definition: table_esms_by_thread_by_event_name.cc:170
int make_row(PFS_thread *thread, PFS_statement_class *klass)
Definition: table_esms_by_thread_by_event_name.cc:223
row_esms_by_thread_by_event_name m_row
Current row.
Definition: table_esms_by_thread_by_event_name.h:146
static Plugin_table m_table_def
Table definition.
Definition: table_esms_by_thread_by_event_name.h:143
int rnd_next() override
Fetch the next row in this cursor.
Definition: table_esms_by_thread_by_event_name.cc:151
pos_esms_by_thread_by_event_name m_next_pos
Next position.
Definition: table_esms_by_thread_by_event_name.h:150
int index_next() override
Find key in index, read record.
Definition: table_esms_by_thread_by_event_name.cc:195
PFS_index_esms_by_thread_by_event_name * m_opened_index
Definition: table_esms_by_thread_by_event_name.h:152
int index_init(uint idx, bool sorted) override
Definition: table_esms_by_thread_by_event_name.cc:187
static int delete_all_rows()
Definition: table_esms_by_thread_by_event_name.cc:130
pos_esms_by_thread_by_event_name m_pos
Current position.
Definition: table_esms_by_thread_by_event_name.h:148
int read_row_values(TABLE *table, unsigned char *buf, Field **fields, bool read_all) override
Read the current row values.
Definition: table_esms_by_thread_by_event_name.cc:249
void reset_position() override
Reset the cursor position to the beginning of the table.
Definition: table_esms_by_thread_by_event_name.cc:144
static THR_LOCK m_table_lock
Table share lock.
Definition: table_esms_by_thread_by_event_name.h:141
table_esms_by_thread_by_event_name()
Definition: table_esms_by_thread_by_event_name.cc:139
static ha_rows get_row_count()
Definition: table_esms_by_thread_by_event_name.cc:135
~table_esms_by_thread_by_event_name() override=default
static PFS_engine_table * create(PFS_engine_table_share *)
Definition: table_esms_by_thread_by_event_name.cc:125
static PFS_engine_table_share m_share
Table share.
Definition: table_esms_by_thread_by_event_name.h:113
int rnd_init(bool scan) override
Initialize table scan.
Definition: table_esms_by_thread_by_event_name.cc:149
This file includes constants used by all storage engines.
my_off_t ha_rows
Definition: my_base.h:1140
Some integer typedefs for easier portability.
unsigned long long int ulonglong
Definition: my_inttypes.h:55
static PFS_engine_table_share_proxy table
Definition: pfs.cc:60
Definition: buf0block_hint.cc:29
Generic buffer container.
PFS_thread_container global_thread_container
Performance schema tables (declarations).
static const LEX_CSTRING pfs
Definition: sql_show_processlist.cc:65
Position of a double cursor, for iterations using 2 nested loops.
Definition: pfs_engine_table.h:592
uint m_index_1
Outer index.
Definition: pfs_engine_table.h:594
uint m_index_2
Current index within index_1.
Definition: pfs_engine_table.h:596
A PERFORMANCE_SCHEMA table share.
Definition: pfs_engine_table.h:357
Row fragment for column EVENT_NAME.
Definition: table_helper.h:582
Name space, internal views used within table setup_instruments.
Definition: table_helper.h:489
Instrumentation metadata for a statement.
Definition: pfs_instr_class.h:607
Row fragment for statement statistics columns.
Definition: table_helper.h:873
Instrumented thread implementation.
Definition: pfs_instr.h:374
Definition: table.h:1403
Definition: thr_lock.h:138
Position of a cursor on PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_THREAD_BY_EVENT_NAME.
Definition: table_esms_by_thread_by_event_name.h:88
pos_esms_by_thread_by_event_name()
Definition: table_esms_by_thread_by_event_name.h:89
void next_thread()
Definition: table_esms_by_thread_by_event_name.h:96
bool has_more_thread()
Definition: table_esms_by_thread_by_event_name.h:103
void reset()
Definition: table_esms_by_thread_by_event_name.h:91
void next_statement()
Definition: table_esms_by_thread_by_event_name.h:101
A row of table PERFORMANCE_SCHEMA.EVENTS_STATEMENTS_SUMMARY_BY_THREAD_BY_EVENT_NAME.
Definition: table_esms_by_thread_by_event_name.h:72
ulonglong m_thread_internal_id
Column THREAD_ID.
Definition: table_esms_by_thread_by_event_name.h:74
PFS_event_name_row m_event_name
Column EVENT_NAME.
Definition: table_esms_by_thread_by_event_name.h:76
PFS_statement_stat_row m_stat
Columns COUNT_STAR, SUM/MIN/AVG/MAX TIMER_WAIT.
Definition: table_esms_by_thread_by_event_name.h:78
Helpers to implement a performance schema table.