28#error "Don't include this C++ header file from a non-C++ file!"
34#include <unordered_map>
96 uint, std::unique_ptr<HASH_ROW_ENTRY, hash_slave_rows_free_entry>>::
222 uint, std::unique_ptr<HASH_ROW_ENTRY, hash_slave_rows_free_entry>>
272 const std::vector<unsigned int> &vector_dimensionality);
307 for (uint i = 0; i <
size(); i++)
317 for (ulong i = 0; i <
size; i++) {
343 switch (source_type) {
345 int real_type = source_metadata >> 8;
404 return ((
m_null_bits[(index / 8)] & (1 << (index % 8))) ==
455 TABLE **conv_table_var);
482 bool replica_has_gipk)
const;
539 const char *table_name_arg,
size_t table_name_length_arg,
541 :
Table_ref(db_name_arg, db_length_arg, table_name_arg,
542 table_name_length_arg, alias_arg, lock_type_arg) {}
596#define DBUG_PRINT_BITSET(N, FRM, BS) \
600 for (i = 0; i < std::min(uint{sizeof(buf) - 1}, (BS)->n_bits); i++) \
601 buf[i] = bitmap_is_set((BS), i) ? '1' : '0'; \
603 DBUG_PRINT((N), ((FRM), buf)); \
Definition: rpl_utility.h:549
bool is_empty()
Definition: rpl_utility.cc:1307
int add(Log_event *ev)
Definition: rpl_utility.cc:1301
~Deferred_log_events()
Definition: rpl_utility.cc:1299
bool execute(Relay_log_info *rli)
Definition: rpl_utility.cc:1309
void rewind()
Definition: rpl_utility.cc:1323
Prealloced_array< Log_event *, 32 > m_array
Definition: rpl_utility.h:551
Deferred_log_events()
Definition: rpl_utility.cc:1296
Definition: rpl_utility.h:110
malloc_unordered_multimap< uint, std::unique_ptr< HASH_ROW_ENTRY, hash_slave_rows_free_entry > > m_hash
The hashtable itself.
Definition: rpl_utility.h:223
bool del(HASH_ROW_ENTRY *entry)
Deletes the entry pointed by entry.
Definition: rpl_utility.cc:1183
HASH_ROW_ENTRY * get(TABLE *table, MY_BITMAP *cols)
Gets the entry, from the hash table, that matches the data in table->record[0] and signaled using col...
Definition: rpl_utility.cc:1117
HASH_ROW_ENTRY * make_entry()
Allocates an empty entry to be added to the hash table.
Definition: rpl_utility.cc:1046
bool next(HASH_ROW_ENTRY **entry)
Gets the entry that stands next to the one pointed to by entry.
Definition: rpl_utility.cc:1142
bool deinit(void)
De-initializes the hash table.
Definition: rpl_utility.cc:1038
int size()
Returns the number of entries in the hash table.
Definition: rpl_utility.cc:1044
uint make_hash_key(TABLE *table, MY_BITMAP *cols)
Auxiliary and internal method used to create an hash key, based on the data in table->record[0] buffe...
Definition: rpl_utility.cc:1191
bool init(void)
Initializes the hash table.
Definition: rpl_utility.cc:1036
bool put(TABLE *table, MY_BITMAP *cols, HASH_ROW_ENTRY *entry)
Puts data into the hash table.
Definition: rpl_utility.cc:1096
bool is_empty(void)
Checks if the hash table is empty or not.
Definition: rpl_utility.cc:1030
This is the abstract base class for binary log events.
Definition: log_event.h:538
A typesafe replacement for DYNAMIC_ARRAY.
Definition: prealloced_array.h:71
Definition: rpl_rli.h:206
Sentry class for managing the need to create and dispose of a local THD instance.
Definition: rpl_utility.h:629
bool m_is_locally_initialized
Tells whether or not the active THD object was created in this object constructor.
Definition: rpl_utility.h:662
THD_instance_guard(THD *thd)
If the given THD object pointer is nullptr, a new instance will be initialized within the constructor...
Definition: rpl_utility.cc:1351
THD * m_target
The active THD object pointer.
Definition: rpl_utility.h:657
virtual ~THD_instance_guard()
If a new instance of THD was created in the constructor, it will be disposed here.
Definition: rpl_utility.cc:1363
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:36
std::unordered_multimap, but with my_malloc, so that you can track the memory used using PSI memory k...
Definition: map_helpers.h:198
A table definition from the master.
Definition: rpl_utility.h:249
int m_json_column_count
Definition: rpl_utility.h:525
ulong filtered_size(bool replica_has_gipk) const
Return the number of fields there is type data for minus the GIPK field if this field does not exist ...
Definition: rpl_utility.h:289
ulong m_size
Definition: rpl_utility.h:518
bool compatible_with(THD *thd, Relay_log_info *rli, TABLE *table, TABLE **conv_table_var)
Decide if the table definition is compatible with a table.
Definition: rpl_utility.cc:475
uint32 calc_field_size(uint col, const uchar *master_data) const
Definition: rpl_utility.cc:96
bool compute_source_table_gipk_info(THD &thd, TABLE *table)
Evaluates if the source table might contain a GIPK.
Definition: rpl_utility.cc:811
enum_field_types type(ulong index) const
Definition: rpl_utility.h:334
std::vector< unsignedint >::const_iterator get_vector_dimensionality_begin() const
Definition: rpl_utility.h:417
table_def()=default
No-op constructor.
bool * m_is_array
Definition: rpl_utility.h:526
uchar * m_memory
Definition: rpl_utility.h:524
int json_column_count() const
Return the number of JSON columns in this table.
Definition: rpl_utility.h:303
ulong size() const
Return the number of fields there is type data for.
Definition: rpl_utility.h:281
unsigned char * m_type
Definition: rpl_utility.h:519
uint m_field_metadata_size
Definition: rpl_utility.h:520
TABLE * create_conversion_table(THD *thd, Relay_log_info *rli, TABLE *target_table, bool replica_has_gipk) const
Create a virtual in-memory temporary table structure.
Definition: rpl_utility.cc:665
std::vector< unsignedint >::const_iterator get_vector_dimensionality_end() const
Definition: rpl_utility.h:422
uint * m_field_metadata
Definition: rpl_utility.h:521
enum_field_types binlog_type(ulong index) const
Definition: rpl_utility.h:298
bool m_is_gipk_on_table
Definition: rpl_utility.h:528
bool m_is_gipk_set
Definition: rpl_utility.h:527
uint16 m_flags
Definition: rpl_utility.h:523
bool is_array(uint index) const
Returns whether or not the field at index is a typed array.
Definition: rpl_utility.h:390
static uint vector_column_count(const unsigned char *types, ulong size)
Return the number of VECTOR columns.
Definition: rpl_utility.h:315
bool is_gipk_present_on_source_table() const
Checks if the table contains a GIPK.
Definition: rpl_utility.cc:806
~table_def()
Definition: rpl_utility.cc:1002
bool maybe_null(uint index) const
Definition: rpl_utility.h:402
uchar * m_null_bits
Definition: rpl_utility.h:522
uint field_metadata(uint index) const
Definition: rpl_utility.h:379
std::vector< unsigned int > m_vector_dimensionality
Definition: rpl_utility.h:529
This file contains the field type.
enum_field_types
Column types for MySQL Note: Keep include/mysql/components/services/bits/stored_program_bits....
Definition: field_types.h:55
@ MYSQL_TYPE_SET
Definition: field_types.h:83
@ MYSQL_TYPE_NEWDATE
Internal to MySQL.
Definition: field_types.h:70
@ MYSQL_TYPE_VECTOR
Definition: field_types.h:77
@ MYSQL_TYPE_JSON
Definition: field_types.h:80
@ MYSQL_TYPE_STRING
Definition: field_types.h:89
@ MYSQL_TYPE_ENUM
Definition: field_types.h:82
@ MYSQL_TYPE_DATE
Definition: field_types.h:66
static int flags[50]
Definition: hp_test1.cc:40
Some integer typedefs for easier portability.
unsigned char uchar
Definition: my_inttypes.h:52
uint16_t uint16
Definition: my_inttypes.h:65
uint32_t uint32
Definition: my_inttypes.h:67
static int count
Definition: myisam_ftdump.cc:45
static bool replace
Definition: mysqlimport.cc:70
static PFS_engine_table_share_proxy table
Definition: pfs.cc:61
Container::const_iterator find(const Container &c, Value &&value)
Definition: generic.h:39
mutable_buffer buffer(void *p, size_t n) noexcept
Definition: buffer.h:418
PSI_memory_key key_memory_HASH_ROW_ENTRY
Definition: psi_memory_key.cc:51
required uint64 version
Definition: replication_group_member_actions.proto:41
bool is_immediate_server_gipk_ready(THD &thd)
Checks if the immediate_server_version supports GIPKs or not.
Definition: rpl_utility.cc:1408
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...
Definition: rpl_utility.cc:1379
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...
Definition: rpl_utility.cc:1332
bool does_source_table_contain_gipk(Relay_log_info const *rli, TABLE *table)
Returns if the replicated table contains a GIPK or not.
Definition: rpl_utility.cc:1413
std::string decimal_numeric_version_to_string(uint32 version)
Returns a string representation for a given version.
Definition: rpl_utility.cc:1421
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).
Definition: rpl_utility.cc:883
Definition: rpl_utility.h:105
HASH_ROW_POS * positions
Definition: rpl_utility.h:107
HASH_ROW_PREAMBLE * preamble
Definition: rpl_utility.h:106
Hash table used when applying row events on the slave and there is no index on the slave's table.
Definition: rpl_utility.h:61
const uchar * bi_start
Points at the position where the row starts in the event buffer (ie, area in memory before unpacking ...
Definition: rpl_utility.h:67
const uchar * bi_ends
Definition: rpl_utility.h:68
Internal structure that acts as a preamble for HASH_ROW_POS in memory structure.
Definition: rpl_utility.h:84
malloc_unordered_multimap< uint, std::unique_ptr< HASH_ROW_ENTRY, hash_slave_rows_free_entry > >::const_iterator search_state
The search state used to iterate over multiple entries for a given key.
Definition: rpl_utility.h:97
bool is_search_state_inited
whether this search_state is usable or not.
Definition: rpl_utility.h:102
uint hash_value
Definition: rpl_utility.h:89
HASH_ROW_PREAMBLE()=default
Definition: my_bitmap.h:43
Extend the normal Table_ref with a few new fields needed by the slave thread, but nowhere else.
Definition: rpl_utility.h:537
RPL_Table_ref(const char *db_name_arg, size_t db_length_arg, const char *table_name_arg, size_t table_name_length_arg, const char *alias_arg, enum thr_lock_type lock_type_arg)
Definition: rpl_utility.h:538
table_def m_tabledef
Definition: rpl_utility.h:545
bool m_tabledef_valid
Definition: rpl_utility.h:544
TABLE * m_conv_table
Definition: rpl_utility.h:546
Definition: completion_hash.h:35
Definition: rpl_utility.h:73
void operator()(HASH_ROW_ENTRY *entry) const
Utility methods for handling row based operations.
Definition: rpl_utility.cc:1018
thr_lock_type
Definition: thr_lock.h:51