![]()  | 
  
    MySQL 8.0.44
    
   Source Code Documentation 
   | 
 
Table PERFORMANCE_SCHEMA.TABLE_REPLICATION_ASYNCHRONOUS_CONNECTION_FAILOVER. More...
#include <table_replication_asynchronous_connection_failover.h>
Public Member Functions | |
| ~table_replication_asynchronous_connection_failover () override | |
| void | reset_position () override | 
| Reset the cursor position to the beginning of the table.  More... | |
| int | rnd_init (bool scan) override | 
| Initialize table for random read or scan.  More... | |
| int | rnd_next () override | 
| Read next row via random scan.  More... | |
| int | rnd_pos (const void *pos) override | 
| Read row via random scan from position.  More... | |
  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 | index_init (uint idx, bool sorted) | 
| 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 () | 
| Find key in index, read record.  More... | |
| 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 *tbs) | 
| Open table function.  More... | |
| static ha_rows | get_row_count () | 
| Get the current number of rows read.  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 | 
| Read the current row values.  More... | |
| table_replication_asynchronous_connection_failover () | |
  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 Types | |
| typedef PFS_simple_index | pos_t | 
| Position of a cursor, for simple iterations.  More... | |
Private Member Functions | |
| int | make_row (uint index) | 
| Stores current row (i.e.index) values for the table into m_row struct members.  More... | |
Private Attributes | |
| st_row_rpl_async_conn_failover | m_row | 
| Current row.  More... | |
| pos_t | m_pos | 
| Current position.  More... | |
| pos_t | m_next_pos | 
| Next position.  More... | |
| RPL_FAILOVER_SOURCE_LIST | m_source_conn_detail {} | 
Static Private Attributes | |
| static THR_LOCK | m_table_lock | 
| Table share lock.  More... | |
| static Plugin_table | m_table_def | 
| Table definition.  More... | |
| static ha_rows | num_rows = 0 | 
Additional Inherited Members | |
  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.TABLE_REPLICATION_ASYNCHRONOUS_CONNECTION_FAILOVER.
Position of a cursor, for simple iterations.
      
  | 
  protected | 
      
  | 
  overridedefault | 
      
  | 
  static | 
Open table function.
| [in] | tbs | Table share object | 
      
  | 
  static | 
Get the current number of rows read.
      
  | 
  private | 
Stores current row (i.e.index) values for the table into m_row struct members.
This stored data is read later through read_row_values().
| [in] | index | current row position. | 
| 0 | Success | 
| != | 0 Error (error code returned) | 
      
  | 
  overrideprotectedvirtual | 
Read the current row values.
| [in] | table | Table handle | 
| [in] | buf | row buffer | 
| [in] | fields | Table fields | 
| [in] | read_all | true if all columns are read. | 
channel_name
host
port
network_namespace
weight
managed_name
Implements PFS_engine_table.
      
  | 
  overridevirtual | 
Reset the cursor position to the beginning of the table.
Implements PFS_engine_table.
      
  | 
  overridevirtual | 
Initialize table for random read or scan.
| [in] | scan | if true: Initialize for random scans through rnd_next() if false: Initialize for random reads through rnd_pos() | 
| 0 | Success | 
| != | 0 Error (error code returned) | 
Reimplemented from PFS_engine_table.
      
  | 
  overridevirtual | 
Read next row via random scan.
| 0 | Success | 
| != | 0 Error (error code returned) | 
Implements PFS_engine_table.
      
  | 
  overridevirtual | 
Read row via random scan from position.
| [in] | pos | Position from position() call | 
| 0 | Success | 
| != | 0 Error (error code returned) | 
Implements PFS_engine_table.
      
  | 
  private | 
Next position.
      
  | 
  private | 
Current position.
      
  | 
  private | 
Current row.
      
  | 
  static | 
Table share.
      
  | 
  private | 
      
  | 
  staticprivate | 
Table definition.
      
  | 
  staticprivate | 
Table share lock.
      
  | 
  staticprivate |