24#ifndef TABLE_SETUP_INSTRUMENTS_H
25#define TABLE_SETUP_INSTRUMENTS_H
103 int rnd_pos(
const void *pos)
override;
105 int index_init(uint idx,
bool sorted)
override;
110 bool read_all)
override;
113 unsigned char *new_buf,
Field **fields)
override;
Definition: pfs_engine_table.h:301
An abstract PERFORMANCE_SCHEMA table.
Definition: pfs_engine_table.h:70
Definition: table_setup_instruments.h:79
bool match_view(uint view)
Definition: table_setup_instruments.cc:83
PFS_index_setup_instruments()
Definition: table_setup_instruments.h:81
~PFS_index_setup_instruments() override=default
bool match(PFS_instr_class *klass)
Definition: table_setup_instruments.cc:90
PFS_key_event_name m_key
Definition: table_setup_instruments.h:89
Definition: table_helper.h:1474
Class to hold information regarding a table to be created on behalf of a plugin.
Definition: plugin_table.h:40
Table PERFORMANCE_SCHEMA.SETUP_INSTRUMENTS.
Definition: table_setup_instruments.h:93
row_setup_instruments m_row
Current row.
Definition: table_setup_instruments.h:129
pos_setup_instruments m_next_pos
Next position.
Definition: table_setup_instruments.h:133
~table_setup_instruments() override=default
int read_row_values(TABLE *table, unsigned char *buf, Field **fields, bool read_all) override
Read the current row values.
Definition: table_setup_instruments.cc:365
int rnd_next() override
Fetch the next row in this cursor.
Definition: table_setup_instruments.cc:115
static THR_LOCK m_table_lock
Table share lock.
Definition: table_setup_instruments.h:124
table_setup_instruments()
Definition: table_setup_instruments.cc:107
int index_next() override
Find key in index, read record.
Definition: table_setup_instruments.cc:271
static Plugin_table m_table_def
Table definition.
Definition: table_setup_instruments.h:126
int make_row(PFS_instr_class *klass, bool update_enabled)
Definition: table_setup_instruments.cc:355
int rnd_pos(const void *pos) override
Fetch a row by position.
Definition: table_setup_instruments.cc:188
static PFS_engine_table * create(PFS_engine_table_share *)
Definition: table_setup_instruments.cc:98
int index_init(uint idx, bool sorted) override
Definition: table_setup_instruments.cc:260
static PFS_engine_table_share m_share
Table share.
Definition: table_setup_instruments.h:96
pos_setup_instruments m_pos
Current position.
Definition: table_setup_instruments.h:131
PFS_index_setup_instruments * m_opened_index
Definition: table_setup_instruments.h:135
int update_row_values(TABLE *table, const unsigned char *old_buf, unsigned char *new_buf, Field **fields) override
Update the current row values.
Definition: table_setup_instruments.cc:453
void reset_position() override
Reset the cursor position to the beginning of the table.
Definition: table_setup_instruments.cc:110
static ha_rows get_row_count()
Definition: table_setup_instruments.cc:102
This file includes constants used by all storage engines.
my_off_t ha_rows
Definition: my_base.h:1141
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: buf0block_hint.cc:30
Performance schema tables (declarations).
static void update_enabled(MYSQL_THD, SYS_VAR *, void *, const void *value)
Updater function for the status variable ..._enabled.
Definition: rewriter_plugin.cc:167
Position of a double cursor, for iterations using 2 nested loops.
Definition: pfs_engine_table.h:602
uint m_index_1
Outer index.
Definition: pfs_engine_table.h:604
uint m_index_2
Current index within index_1.
Definition: pfs_engine_table.h:606
A PERFORMANCE_SCHEMA table share.
Definition: pfs_engine_table.h:359
Information for all instrumentation.
Definition: pfs_instr_class.h:248
Name space, internal views used within table setup_instruments.
Definition: table_helper.h:490
static const uint FIRST_INSTRUMENT
Definition: table_helper.h:491
static const uint LAST_INSTRUMENT
Definition: table_helper.h:516
Definition: thr_lock.h:139
Position of a cursor on PERFORMANCE_SCHEMA.SETUP_INSTRUMENTS.
Definition: table_setup_instruments.h:63
pos_setup_instruments()
Definition: table_setup_instruments.h:64
void next_view()
Definition: table_setup_instruments.h:73
bool has_more_view()
Definition: table_setup_instruments.h:71
void reset()
Definition: table_setup_instruments.h:66
A row of PERFORMANCE_SCHEMA.SETUP_INSTRUMENTS.
Definition: table_setup_instruments.h:50
PFS_instr_class * m_instr_class
Columns NAME, ENABLED, TIMED.
Definition: table_setup_instruments.h:52
bool m_update_timed
True if column TIMED can be updated.
Definition: table_setup_instruments.h:56
bool m_update_enabled
True if column ENABLED can be updated.
Definition: table_setup_instruments.h:54
bool m_update_flags
True if column FLAGS can be updated.
Definition: table_setup_instruments.h:58
Helpers to implement a performance schema table.