24#ifndef TABLE_TLS_CHANNEL_H
25#define TABLE_TLS_CHANNEL_H
68 int rnd_pos(
const void *pos)
override;
74 bool read_all)
override;
An abstract PERFORMANCE_SCHEMA table.
Definition: pfs_engine_table.h:70
Class to hold information regarding a table to be created on behalf of a plugin.
Definition: plugin_table.h:40
Table PERFORMANCE_SCHEMA.TLS_CHANNEL_STATUS.
Definition: table_tls_channel_status.h:58
~table_tls_channel_status() override=default
row_tls_channel_status * m_row
Current row.
Definition: table_tls_channel_status.h:88
void reset_position() override
Reset the cursor position to the beginning of the table.
Definition: table_tls_channel_status.cc:139
void materialize()
Definition: table_tls_channel_status.cc:83
PFS_simple_index m_next_pos
Next position.
Definition: table_tls_channel_status.h:92
std::vector< row_tls_channel_status > TLS_channel_status_container
Definition: table_tls_channel_status.h:60
PFS_simple_index m_pos
Current position.
Definition: table_tls_channel_status.h:90
int rnd_pos(const void *pos) override
Fetch a row by position.
Definition: table_tls_channel_status.cc:144
static THR_LOCK m_table_lock
Table share lock.
Definition: table_tls_channel_status.h:83
static PFS_engine_table_share m_share
Table share.
Definition: table_tls_channel_status.h:62
TLS_channel_status_container m_row_tls_channel_status
Definition: table_tls_channel_status.h:80
int rnd_next() override
Fetch the next row in this cursor.
Definition: table_tls_channel_status.cc:151
int read_row_values(TABLE *table, unsigned char *buf, Field **fields, bool read_all) override
Read the current row values.
Definition: table_tls_channel_status.cc:162
static PFS_engine_table * create(PFS_engine_table_share *)
Definition: table_tls_channel_status.cc:70
static Plugin_table m_table_def
Table definition.
Definition: table_tls_channel_status.h:85
table_tls_channel_status()
Definition: table_tls_channel_status.cc:74
static ha_rows get_row_count()
Definition: table_tls_channel_status.cc:134
This file includes constants used by all storage engines.
my_off_t ha_rows
Definition: my_base.h:1141
Some integer typedefs for easier portability.
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Definition: buf0block_hint.cc:30
Performance schema tables (declarations).
A PERFORMANCE_SCHEMA table share.
Definition: pfs_engine_table.h:359
Position of a cursor, for simple iterations.
Definition: pfs_engine_table.h:567
Definition: thr_lock.h:139
A row of PERFORMANCE_SCHEMA.TLS_CHANNEL_STATUS table .
Definition: table_tls_channel_status.h:48
std::string m_interface
Interface name.
Definition: table_tls_channel_status.h:50
std::string m_property_value
Property value.
Definition: table_tls_channel_status.h:54
std::string m_property_name
Property name.
Definition: table_tls_channel_status.h:52
Helpers to implement a performance schema table.