MySQL 9.1.0
Source Code Documentation
|
Table PERFORMANCE_SCHEMA.ERROR_LOG. More...
#include <table_error_log.h>
Public Member Functions | |
~table_error_log () override=default | |
Public Member Functions inherited from cursor_by_error_log | |
void | reset_position () override |
Reset cursor position. More... | |
int | rnd_next () override |
Read next row (from ring-buffer into table). More... | |
int | rnd_pos (const void *pos) override |
Random pos. More... | |
int | index_next () override |
Go to next entry in index and retrieve the matching error log event. More... | |
~cursor_by_error_log () override=default | |
Public Member Functions inherited from PFS_engine_table | |
int | read_row (TABLE *table, unsigned char *buf, Field **fields) |
Read a table row. More... | |
int | update_row (TABLE *table, const unsigned char *old_buf, unsigned char *new_buf, Field **fields) |
Update a table row. More... | |
int | delete_row (TABLE *table, const unsigned char *buf, Field **fields) |
Delete a row from this table. More... | |
virtual int | rnd_init (bool scan) |
Initialize table scan. More... | |
virtual int | index_read (KEY *key_infos, uint index, const uchar *key, uint key_len, enum ha_rkey_function find_flag) |
Positions an index cursor to the index specified in the handle. More... | |
virtual int | index_read_last (KEY *key_infos, const uchar *key, uint key_len) |
virtual int | index_next_same (const uchar *key, uint key_len) |
Reads the next row matching the given key value. More... | |
virtual int | index_prev () |
virtual int | index_first () |
virtual int | index_last () |
void | get_position (void *ref) |
Get the position of the current row. More... | |
void | set_position (const void *ref) |
Set the table cursor at a given position. More... | |
virtual | ~PFS_engine_table ()=default |
Destructor. More... | |
Static Public Member Functions | |
static PFS_engine_table * | create (PFS_engine_table_share *) |
Table builder. More... | |
Static Public Member Functions inherited from cursor_by_error_log | |
static ha_rows | get_row_count () |
Get row-count (by getting the number of events in the ring-buffer) More... | |
Static Public Member Functions inherited from PFS_engine_table | |
static PFS_engine_table_share * | find_engine_table_share (const char *name) |
Find a table share by name. More... | |
Static Public Attributes | |
static PFS_engine_table_share | m_share |
Table share. More... | |
Protected Member Functions | |
int | read_row_values (TABLE *table, unsigned char *buf, Field **fields, bool read_all) override |
Fill in a row's fields from this class's buffer. More... | |
table_error_log () | |
int | index_init (uint idx, bool sorted) override |
Create an index for the column with the ordinal idx. More... | |
Protected Member Functions inherited from cursor_by_error_log | |
cursor_by_error_log (const PFS_engine_table_share *share) | |
Protected Member Functions inherited from PFS_engine_table | |
virtual int | update_row_values (TABLE *table, const unsigned char *old_buf, unsigned char *new_buf, Field **fields) |
Update the current row values. More... | |
virtual int | delete_row_values (TABLE *table, const unsigned char *buf, Field **fields) |
Delete a row. More... | |
PFS_engine_table (const PFS_engine_table_share *share, void *pos) | |
Constructor. More... | |
Private Member Functions | |
int | make_row (log_sink_pfs_event *e) override |
Copy an event from the ring-buffer into this class's buffer. More... | |
Private Attributes | |
log_sink_pfs_event | m_header |
Current row. More... | |
char | m_message [LOG_BUFF_MAX] |
message (DATA column) from ring-buffer More... | |
Static Private Attributes | |
static THR_LOCK | m_table_lock |
Table share lock. More... | |
static Plugin_table | m_table_def |
Table definition. More... | |
Additional Inherited Members | |
Protected Attributes inherited from cursor_by_error_log | |
PFS_index_error_log * | m_opened_index |
Protected Attributes inherited from PFS_engine_table | |
const PFS_engine_table_share * | m_share_ptr |
Table share. More... | |
void * | m_pos_ptr |
Opaque pointer to the m_pos position of this cursor. More... | |
time_normalizer * | m_normalizer |
Current normalizer. More... | |
PFS_engine_index_abstract * | m_index |
Current index. More... | |
Table PERFORMANCE_SCHEMA.ERROR_LOG.
|
protected |
|
overridedefault |
|
static |
Table builder.
|
overrideprotectedvirtual |
Create an index for the column with the ordinal idx.
Create an index on the column with the ordinal idx.
idx | ordinal of the column to create an index for |
sorted | unused |
0 | success |
Reimplemented from PFS_engine_table.
|
overrideprivatevirtual |
Copy an event from the ring-buffer into this class's buffer.
Copy a log-event from the ring-buffer into (the private variables of our instance of the class) table_error_log.
Caller must hold a read lock on the ring-buffer.
e | the event in the ring-buffer |
0 | success |
Implements cursor_by_error_log.
|
overrideprotectedvirtual |
Fill in a row's fields from this class's buffer.
Fill in a row's fields from internal representation (i.e.
from the private variables in the instance of table_error_log that contain the current row).
As we have previously copied the event from the ring-buffer, holding a read-lock on the ring-buffer is not necessary here.
0 | success |
Implements PFS_engine_table.
|
private |
Current row.
event-header copied from ring-buffer
|
private |
message (DATA column) from ring-buffer
|
static |
Table share.
|
staticprivate |
Table definition.
|
staticprivate |
Table share lock.