MySQL 9.1.0
Source Code Documentation
|
#include <sys/types.h>
#include <algorithm>
#include <string>
#include <unordered_map>
#include <vector>
#include "field_types.h"
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_macros.h"
#include "sql/psi_memory_key.h"
#include <memory>
#include "map_helpers.h"
#include "prealloced_array.h"
#include "sql/table.h"
Go to the source code of this file.
Classes | |
struct | HASH_ROW_POS |
Hash table used when applying row events on the slave and there is no index on the slave's table. More... | |
struct | hash_slave_rows_free_entry |
struct | HASH_ROW_PREAMBLE |
Internal structure that acts as a preamble for HASH_ROW_POS in memory structure. More... | |
struct | HASH_ROW_ENTRY |
class | Hash_slave_rows |
class | table_def |
A table definition from the master. More... | |
struct | RPL_Table_ref |
Extend the normal Table_ref with a few new fields needed by the slave thread, but nowhere else. More... | |
class | Deferred_log_events |
class | THD_instance_guard |
Sentry class for managing the need to create and dispose of a local THD instance. More... | |
Macros | |
#define | DBUG_PRINT_BITSET(N, FRM, BS) |
Functions | |
std::pair< my_off_t, std::pair< uint, bool > > | read_field_metadata (const uchar *buffer, enum_field_types binlog_type) |
Decode field metadata from a char buffer (serialized form) into an int (packed form). More... | |
std::string | replace_all_in_str (std::string from, std::string find, std::string replace) |
Replaces every occurrence of the string find by the string replace , within the string from and return the resulting string. More... | |
bool | is_require_row_format_violation (const THD *thd) |
This method shall evaluate if a command being executed goes against any of the restrictions of server variable session.require_row_format. More... | |
bool | is_immediate_server_gipk_ready (THD &thd) |
Checks if the immediate_server_version supports GIPKs or not. More... | |
bool | does_source_table_contain_gipk (Relay_log_info const *rli, TABLE *table) |
Returns if the replicated table contains a GIPK or not. More... | |
std::string | decimal_numeric_version_to_string (uint32 version) |
Returns a string representation for a given version. More... | |
#define DBUG_PRINT_BITSET | ( | N, | |
FRM, | |||
BS | |||
) |
std::string decimal_numeric_version_to_string | ( | uint32 | version | ) |
Returns a string representation for a given version.
version | a version represented using a integer |
bool does_source_table_contain_gipk | ( | Relay_log_info const * | rli, |
TABLE * | table | ||
) |
Returns if the replicated table contains a GIPK or not.
rli | The relay log object associated to the channel |
table | The table to check for the GIPK |
bool is_immediate_server_gipk_ready | ( | THD & | thd | ) |
Checks if the immediate_server_version supports GIPKs or not.
thd | The THD context to check the version |
bool is_require_row_format_violation | ( | const THD * | thd | ) |
This method shall evaluate if a command being executed goes against any of the restrictions of server variable session.require_row_format.
thd | The thread associated to the command |
std::pair< my_off_t, std::pair< uint, bool > > read_field_metadata | ( | const uchar * | buffer, |
enum_field_types | binlog_type | ||
) |
Decode field metadata from a char buffer (serialized form) into an int (packed form).
buffer | Field metadata, in the character stream form produced by save_field_metadata. |
binlog_type | The type of the field, in the form returned by Field::binlog_type and stored in Table_map_log_event. |
pair | where:
|
std::string replace_all_in_str | ( | std::string | from, |
std::string | find, | ||
std::string | replace | ||
) |
Replaces every occurrence of the string find
by the string replace
, within the string from
and return the resulting string.
The original string from
remains untouched.
from | the string to search within. |
find | the string to search for. |
replace | the string to replace every occurrence of from |