102#ifdef HAVE_PSI_STAGE_INTERFACE
123#if defined(MYSQL_SERVER)
131#if defined(MYSQL_SERVER)
134#define PREFIX_SQL_LOAD "SQL_LOAD-"
146#define TEMP_FILE_MAX_LEN UUID_LENGTH + 38
158#define ASSERT_OR_RETURN_ERROR(COND, ERRNO) \
160 if (!(COND)) return ERRNO; \
163#define ASSERT_OR_RETURN_ERROR(COND, ERRNO) assert(COND)
166#define LOG_EVENT_OFFSET 4
168#define NUM_LOAD_DELIM_STRS 5
191#define MAX_LOG_EVENT_HEADER \
193 (LOG_EVENT_HEADER_LEN + \
194 Binary_log_event::QUERY_HEADER_LEN + \
196 EXECUTE_LOAD_QUERY_EXTRA_HEADER_LEN) +
198 MAX_SIZE_LOG_EVENT_STATUS + \
204#define SL_MASTER_PORT_OFFSET 8
205#define SL_MASTER_POS_OFFSET 0
206#define SL_MASTER_HOST_OFFSET 10
211#define I_TYPE_OFFSET 0
212#define I_VAL_OFFSET 1
215#define BINLOG_MAGIC "\xfe\x62\x69\x6e"
216#define BINLOG_MAGIC_SIZE 4
247#define LOG_EVENT_THREAD_SPECIFIC_F 0x4
262#define LOG_EVENT_SUPPRESS_USE_F 0x8
279#define LOG_EVENT_ARTIFICIAL_F 0x20
287#define LOG_EVENT_RELAY_LOG_F 0x40
298#define LOG_EVENT_IGNORABLE_F 0x80
307#define LOG_EVENT_NO_FILTER_F 0x100
318#define LOG_EVENT_MTS_ISOLATE_F 0x200
343#define OPTIONS_WRITTEN_TO_BIN_LOG \
344 (OPTION_AUTO_IS_NULL | OPTION_NO_FOREIGN_KEY_CHECKS | \
345 OPTION_RELAXED_UNIQUE_CHECKS | OPTION_NOT_AUTOCOMMIT)
348#define EXPECTED_OPTIONS \
349 ((1ULL << 14) | (1ULL << 26) | (1ULL << 27) | (1ULL << 19))
351#if OPTIONS_WRITTEN_TO_BIN_LOG != EXPECTED_OPTIONS
352#error OPTIONS_WRITTEN_TO_BIN_LOG must NOT change their values!
354#undef EXPECTED_OPTIONS
388enum enum_base64_output_mode {
389 BASE64_OUTPUT_NEVER = 0,
390 BASE64_OUTPUT_AUTO = 1,
391 BASE64_OUTPUT_UNSPEC = 2,
392 BASE64_OUTPUT_DECODE_ROWS = 3,
394 BASE64_OUTPUT_MODE_COUNT
409struct PRINT_EVENT_INFO {
419 bool sql_mode_inited;
421 ulong auto_increment_increment, auto_increment_offset;
425 uint lc_time_names_number;
426 uint charset_database_number;
427 uint default_collation_for_utf8mb4_number;
428 uint8_t sql_require_primary_key;
430 bool thread_id_printed;
431 uint8_t default_table_encryption;
435 ~PRINT_EVENT_INFO() {
450 enum_base64_output_mode base64_output_mode;
460 bool printed_fd_event;
462 uint8 common_header_len;
479 bool have_unflushed_events;
489 bool skipped_event_in_transaction;
491 bool print_table_metadata;
499 bool require_row_format;
504 uint32_t immediate_server_version;
754 virtual const char *
get_db();
757 virtual void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const = 0;
761 void print_base64(
IO_CACHE *
file, PRINT_EVENT_INFO *print_event_info,
765 void *
operator new(
size_t size);
767 static void operator delete(
void *ptr, size_t) {
my_free(ptr); }
770 static void *
operator new(size_t,
void *ptr) {
return ptr; }
771 static void operator delete(
void *,
void *) {}
896#if defined(MYSQL_SERVER)
1099 virtual bool ends_group()
const {
return false; }
1140 DBUG_PRINT(
"info", (
"skip reason=%d=%s", ret,
1334 bool using_trans,
bool immediate,
bool suppress_use,
1335 int error,
bool ignore_command =
false);
1336 const char *
get_db()
override {
return db; }
1360 const char *db_filtered =
1379 PRINT_EVENT_INFO *print_event_info)
const;
1380 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1381 static bool rewrite_db_in_buffer(
char **
buf, ulong *event_len,
1409#if defined(MYSQL_SERVER)
1474 const char **query_arg);
1477 return !strncmp(
query, pattern, p_len);
1543 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1552 return Binary_log_event::FORMAT_DESCRIPTION_HEADER_LEN;
1558#if defined(MYSQL_SERVER)
1602 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1622#if defined(MYSQL_SERVER)
1667 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1684#if defined(MYSQL_SERVER)
1732 bool ends_group()
const override {
return true; }
1733#if defined(MYSQL_SERVER)
1751 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1765#if defined(MYSQL_SERVER)
1816 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1818#if defined(MYSQL_SERVER)
1850 char *val_arg, ulong val_len_arg,
Item_result type_arg,
1851 uint charset_number_arg,
uchar flags_arg,
1855 type_arg, charset_number_arg, flags_arg),
1863 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1893#if defined(MYSQL_SERVER)
1914 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1934#if defined(MYSQL_SERVER)
1980 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
1987 return ident_len + Binary_log_event::ROTATE_HEADER_LEN;
1997#if defined(MYSQL_SERVER)
2033 uint block_len_arg,
bool using_trans);
2037 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
2047 return block_len + Binary_log_event::APPEND_BLOCK_HEADER_LEN;
2051 const char *
get_db()
override {
return db; }
2057#if defined(MYSQL_SERVER)
2098 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
2099 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info,
bool enable_local);
2109 return Binary_log_event::DELETE_FILE_HEADER_LEN;
2113 const char *
get_db()
override {
return db; }
2119#if defined(MYSQL_SERVER)
2166 uint block_len_arg,
bool using_trans);
2177#if defined(MYSQL_SERVER)
2224 THD *
thd,
const char *query_arg, ulong query_length,
2225 uint fn_pos_start_arg,
uint fn_pos_end_arg,
2227 bool immediate,
bool suppress_use,
int errcode);
2230 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
2233 const char *local_fname)
const;
2249#if defined(MYSQL_SERVER)
2254#if defined MYSQL_SERVER
2258 const char *table_name_arg,
bool is_concurrent_arg,
2291 Unknown_log_event(
const char *
buf,
2297 common_header->set_is_valid(
true);
2301 ~Unknown_log_event()
override =
default;
2302 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
2308char *
str_to_hex(
char *to,
const char *from,
size_t len);
2375 bool is_transactional);
2390 static bool rewrite_db_in_buffer(
char **
buf, ulong *event_len,
2432#if defined(MYSQL_SERVER)
2437 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
2449 const Optional_metadata_fields &fields)
const;
2460 const Optional_metadata_fields &fields)
const;
2468#if defined(MYSQL_SERVER)
2528 class Charset_iterator;
2529 class Default_charset_iterator;
2530 class Column_charset_iterator;
2534#ifdef HAVE_PSI_STAGE_INTERFACE
2586 if (estimated == 0) {
2587 assert(cursor > begin);
2589 estimated = (
end - begin) / avg_row_change_size;
2655#ifdef HAVE_PSI_STAGE_INTERFACE
2695#if defined(MYSQL_SERVER)
2700 void print_verbose(
IO_CACHE *
file, PRINT_EVENT_INFO *print_event_info);
2702 PRINT_EVENT_INFO *print_event_info,
2704 const uchar *prefix,
2721#if defined(MYSQL_SERVER)
2752 MY_BITMAP const *cols,
bool is_transactional,
2754 const unsigned char *extra_row_ndb_info);
2760 void print_helper(
FILE *, PRINT_EVENT_INFO *)
const;
2821#if defined(MYSQL_SERVER)
2842 return key_cmp2((*m_key_info)->key_part, k1, (*m_key_info)->key_length,
2843 k2, (*m_key_info)->key_length) < 0;
2850 std::set<uchar *, Key_compare>::iterator
m_itr;
2879 bool is_after_image,
bool only_seek =
false);
2940#if defined(MYSQL_SERVER)
3077 const uchar *curr_bi_start
3197#if defined(MYSQL_SERVER)
3199 bool is_transactional,
3200 const unsigned char *extra_row_ndb_info);
3204#if defined(MYSQL_SERVER)
3206 bool is_transactional,
3207 const uchar *before_record
3226 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3229#if defined(MYSQL_SERVER)
3287 bool is_transactional,
3288 const unsigned char *extra_row_ndb_info);
3291 bool is_transactional,
3292 const unsigned char *extra_row_ndb_info);
3304 bool is_transactional,
3305 const uchar *before_record,
3321 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3324#if defined(MYSQL_SERVER)
3330 const uchar *curr_bi_start)
override;
3343 const THD *thd_arg);
3404 const unsigned char *extra_row_ndb_info);
3410 bool is_transactional,
3411 const uchar *before_record,
3412 const uchar *after_record
3427 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3430#if defined(MYSQL_SERVER)
3471 std::string_view msg)
3476 DBUG_PRINT(
"enter", (
"incident: %d", incident_arg));
3504 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3507#if defined(MYSQL_SERVER)
3514 return Binary_log_event::INCIDENT_HEADER_LEN + 1 +
message_length;
3517 bool ends_group()
const override {
return true; }
3572 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3576 return Binary_log_event::IGNORABLE_HEADER_LEN;
3647 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3650 return Binary_log_event::IGNORABLE_HEADER_LEN + 1 + strlen(
m_rows_query);
3656 bool flush_stream) {
3658 (flush_stream ? (fflush(
file) || ferror(
file)) : 0) ||
3717 uint64_t payload_size,
3718 uint16_t compression_type,
3719 uint64_t uncompressed_size)
3726 uint64_t payload_size)
3728 thd_arg, payload, payload_size,
3744 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3750#if defined(MYSQL_SERVER)
3798 int64 sequence_number_arg,
bool may_have_sbr_stmts_arg,
3799 ulonglong original_commit_timestamp_arg,
3800 ulonglong immediate_commit_timestamp_arg,
3801 uint32_t original_server_version_arg,
3802 uint32_t immediate_server_version_arg);
3809 int64 last_committed_arg,
int64 sequence_number_arg,
3810 bool may_have_sbr_stmts_arg,
3811 ulonglong original_commit_timestamp_arg,
3812 ulonglong immediate_commit_timestamp_arg,
3814 uint32_t original_server_version_arg,
3815 uint32_t immediate_server_version_arg);
3885 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
3888#if defined(MYSQL_SERVER)
3977 bool is_checksum_enabled =
false,
3978 int event_counter = 0);
4025 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
4038 (
"skip writing Previous_gtids_log_event because of"
4039 "debug option 'skip_writing_previous_gtids_log_event'"));
4050 (
"writing partial Previous_gtids_log_event because of"
4051 "debug option 'write_partial_previous_gtids_log_event'"));
4083#if defined(MYSQL_SERVER)
4147 bool is_gtid_specified_arg);
4166 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
4169#if defined(MYSQL_SERVER)
4264 std::map<std::string, std::string> *
map);
4286 void print(
FILE *
file, PRINT_EVENT_INFO *print_event_info)
const override;
4289#if defined(MYSQL_SERVER)
4310 size_t *event_size);
4394template <
class EVENT>
4396 return ev->write(ostream);
4404 const char *identifier,
size_t length);
4409 const char *identifier,
4430template <
typename T>
int64 query_id_t
Definition: binlog.h:72
Contains the classes representing events occurring in the replication stream.
#define LOG_EVENT_HEADER_LEN
Definition: binlog_event.h:421
This event is created to contain the file data.
Definition: log_event.h:2028
Append_block_log_event(THD *thd, const char *db_arg, uchar *block_arg, uint block_len_arg, bool using_trans)
Definition: log_event.cc:6996
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:7026
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:7053
virtual int get_create_or_append() const
Definition: log_event.cc:7076
bool is_sbr_logging_format() const override
Return true if the event has to be logged using SBR for DMLs.
Definition: log_event.h:2053
size_t get_data_size() override
Definition: log_event.h:2045
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:7063
~Append_block_log_event() override=default
const char * get_db() override
Definition: log_event.h:2050
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:7106
The abstract class for basic output streams which provides write operation.
Definition: basic_ostream.h:37
Event for the first block of file to be loaded, its only difference from Append_block event is that t...
Definition: log_event.h:2161
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:7327
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:7317
~Begin_load_query_log_event() override=default
int get_create_or_append() const override
Definition: log_event.cc:7323
Begin_load_query_log_event(THD *thd_arg, const char *db_arg, uchar *block_arg, uint block_len_arg, bool using_trans)
Definition: log_event.cc:7294
Delete_file_log_event is created when the LOAD_DATA query fails on the master for some reason,...
Definition: log_event.h:2091
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:7267
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:7245
size_t get_data_size() override
Definition: log_event.h:2107
~Delete_file_log_event() override=default
bool is_sbr_logging_format() const override
Return true if the event has to be logged using SBR for DMLs.
Definition: log_event.h:2115
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:7222
const char * get_db() override
Definition: log_event.h:2112
Delete_file_log_event(THD *thd, const char *db_arg, bool using_trans)
Definition: log_event.cc:7195
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:7255
Log row deletions.
Definition: log_event.h:3394
bool read_write_bitmaps_cmp(const TABLE *table) const override
Compares the table's read/write_set with the columns included in this event's before-image and/or aft...
Definition: log_event.h:3413
Delete_rows_log_event(THD *, TABLE *, const Table_id &, bool is_transactional, const unsigned char *extra_row_ndb_info)
Definition: log_event.cc:12436
static bool binlog_row_logging_function(THD *thd, TABLE *table, bool is_transactional, const uchar *before_record, const uchar *after_record)
Definition: log_event.cc:12452
int do_after_row_operations(const Relay_log_info *const, int) override
Definition: log_event.cc:12502
Log_event_type get_general_type_code() override
Definition: log_event.h:3421
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:12472
@ TYPE_CODE
Definition: log_event.h:3398
int do_exec_row(const Relay_log_info *const) override
Definition: log_event.cc:12509
int do_before_row_operations(const Relay_log_info *const) override
Definition: log_event.cc:12479
Event responsible for LOAD DATA execution, it similar to Query_log_event but before executing the que...
Definition: log_event.h:2219
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:7479
bool is_sbr_logging_format() const override
When a query log event contains a non-transaction control statement, we assume that it is changing da...
Definition: log_event.h:2243
bool write_post_header_for_derived(Basic_ostream *ostream) override
Definition: log_event.cc:7389
Execute_load_query_log_event(THD *thd, const char *query_arg, ulong query_length, uint fn_pos_start_arg, uint fn_pos_end_arg, binary_log::enum_load_dup_handling dup_handling_arg, bool using_trans, bool immediate, bool suppress_use, int errcode)
Definition: log_event.cc:7340
int pack_info(Protocol *protocol) override
This (which is used only for SHOW BINLOG EVENTS) could be updated to print SET @session_var=.
Definition: log_event.cc:7448
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:7383
ulong get_post_header_size_for_derived() override
Definition: log_event.cc:7379
~Execute_load_query_log_event() override=default
This is a subclass if Gtid_event and Log_event.
Definition: log_event.h:3790
rpl_gno get_gno() const override
Return the GNO for this GTID.
Definition: log_event.h:3933
rpl_sidno get_sidno(bool need_lock)
Return the SIDNO relative to the global sid_map for this GTID.
Definition: log_event.cc:13516
const rpl_sid * get_sid() const
Return the SID for this GTID.
Definition: log_event.h:3903
rpl_sid sid
SID for this GTID.
Definition: log_event.h:3953
~Gtid_log_event() override=default
bool write_data_header(Basic_ostream *ostream) override
Writes the post-header to the given output stream.
Definition: log_event.cc:13227
size_t get_event_length()
Definition: log_event.h:3834
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:13448
enum_gtid_type get_type() const
Return the gtid type for this Gtid_log_event: this can be either ANONYMOUS_GTID, AUTOMATIC_GTID,...
Definition: log_event.h:3897
uint32 write_body_to_memory(uchar *buff)
Writes the body to the given memory buffer.
Definition: log_event.cc:13234
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:13305
uint32 write_post_header_to_memory(uchar *buffer)
Writes the post-header to the given memory buffer.
Definition: log_event.cc:13174
static const size_t SET_STRING_PREFIX_LENGTH
Length of SET_STRING_PREFIX.
Definition: log_event.h:3940
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:13296
void set_trx_length_by_cache_size(ulonglong cache_size, bool is_checksum_enabled=false, int event_counter=0)
Set the transaction length information based on binlog cache size.
Definition: log_event.cc:13467
static const size_t MAX_SET_STRING_LENGTH
The maximal length of the entire "SET ..." query.
Definition: log_event.h:3942
static const char * SET_STRING_PREFIX
string holding the text "SET @@GLOBAL.GTID_NEXT = '"
Definition: log_event.h:3936
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:13094
Gtid_specification spec
Internal representation of the GTID.
Definition: log_event.h:3951
int pack_info(Protocol *) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:13075
size_t get_data_size() override
Definition: log_event.h:3827
size_t to_string(char *buf) const
Used internally by both print() and pack_info().
Definition: log_event.cc:13083
Gtid_log_event(THD *thd_arg, bool using_trans, int64 last_committed_arg, int64 sequence_number_arg, bool may_have_sbr_stmts_arg, ulonglong original_commit_timestamp_arg, ulonglong immediate_commit_timestamp_arg, uint32_t original_server_version_arg, uint32_t immediate_server_version_arg)
Create a new event using the GTID owned by the given thread.
Definition: log_event.cc:12983
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:13462
Represents a set of GTIDs.
Definition: rpl_gtid.h:1455
Definition: rpl_utility.h:109
Definition: log_event.h:3679
Heartbeat_log_event_v2(const char *buf, const Format_description_event *description_event)
Definition: log_event.cc:14380
Definition: log_event.h:3672
Heartbeat_log_event(const char *buf, const Format_description_event *description_event)
Definition: log_event.cc:14373
Base class for ignorable log events is Ignorable_event.
Definition: log_event.h:3548
Ignorable_log_event(THD *thd_arg)
Definition: log_event.h:3551
int pack_info(Protocol *) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:12843
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:12836
size_t get_data_size() override
Definition: log_event.h:3574
~Ignorable_log_event() override
Class representing an incident, an occurrence out of the ordinary, that happened on the master.
Definition: log_event.h:3466
bool write_data_header(Basic_ostream *ostream) override
Definition: log_event.cc:12788
size_t get_data_size() override
Definition: log_event.h:3512
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:12814
~Incident_log_event() override
Definition: log_event.cc:12702
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:12748
int pack_info(Protocol *) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:12721
Incident_log_event(THD *thd_arg, enum_incident incident_arg, std::string_view msg)
Definition: log_event.h:3469
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:12715
const char * description() const
Definition: log_event.cc:12706
bool ends_group() const override
Definition: log_event.h:3516
The class derives from the class Intvar_event in Binlog API, defined in the header binlog_event....
Definition: log_event.h:1588
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:5838
~Intvar_log_event() override=default
size_t get_data_size() override
Definition: log_event.h:1610
Intvar_log_event(THD *thd_arg, uchar type_arg, ulonglong val_arg, enum_event_cache_type cache_type_arg, enum_event_logging_type logging_type_arg)
Definition: log_event.h:1591
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:5917
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:5848
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:5813
bool is_sbr_logging_format() const override
Return true if the event has to be logged using SBR for DMLs.
Definition: log_event.h:1618
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:5892
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:5912
Base class that is used to represent any kind of expression in a relational query.
Definition: item.h:853
Definition: sql_list.h:434
Definition: log_event.h:2254
bool has_replace
Definition: log_event.h:2274
const size_t BUF_SIZE
Definition: log_event.h:2263
const char * table_name
Definition: log_event.h:2270
const char * fname
Definition: log_event.h:2271
const sql_exchange * sql_ex
Definition: log_event.h:2268
THD * thd
Definition: log_event.h:2267
bool has_ignore
Definition: log_event.h:2275
String str
Definition: log_event.h:2264
const char * db
Definition: log_event.h:2269
bool is_concurrent
Definition: log_event.h:2273
const String * generate(size_t *fn_start, size_t *fn_end)
Definition: log_event.cc:7588
Load_query_generator(THD *thd_arg, const sql_exchange *ex, const char *db_arg, const char *table_name_arg, bool is_concurrent_arg, bool replace, bool ignore)
Definition: log_event.cc:7571
This is the abstract base class for binary log events.
Definition: log_event.h:541
bool write_header(Basic_ostream *ostream, size_t data_length)
Writes the common-header of this event to the given output stream and updates the checksum.
Definition: log_event.cc:1291
ulong mts_group_idx
Index in rli->gaq array to indicate a group that this event is purging.
Definition: log_event.h:696
bool is_mts_sequential_exec()
Is called from get_mts_execution_mode() to.
Definition: log_event.h:909
binary_log::Log_event_footer * common_footer
The Log_event_footer class contains the variable present in the common footer.
Definition: log_event.h:708
bool is_using_stmt_cache() const
Definition: log_event.h:840
enum_skip_reason continue_group(Relay_log_info *rli)
Helper function to ignore an event w.r.t.
Definition: log_event.cc:2476
bool is_no_filter_event() const
Definition: log_event.h:834
int apply_event(Relay_log_info *rli)
Apply the event to the database.
Definition: log_event.cc:3076
virtual int do_apply_event(Relay_log_info const *rli)
Primitive to apply an event to the database.
Definition: log_event.h:1161
virtual const char * get_db()
Definition: log_event.cc:1100
enum_event_cache_type event_cache_type
Defines the type of the cache, if any, where the event will be stored before being flushed to disk.
Definition: log_event.h:679
int net_send(Protocol *protocol, const char *log_name, my_off_t pos)
Only called by SHOW BINLOG EVENTS.
Definition: log_event.cc:1105
uint32 write_header_to_memory(uchar *buf)
Writes the common header of this event to the given memory buffer.
Definition: log_event.cc:1252
virtual bool starts_group() const
Events of a certain type can start or end a group of events treated transactionally wrt binlog.
Definition: log_event.h:1093
uint32 server_id
Definition: log_event.h:667
enum_mts_event_exec_mode
Definition: log_event.h:929
@ EVENT_EXEC_PARALLEL
Definition: log_event.h:933
@ EVENT_EXEC_SYNC
Definition: log_event.h:941
@ EVENT_EXEC_CAN_NOT
Definition: log_event.h:945
@ EVENT_EXEC_ASYNC
Definition: log_event.h:937
enum_skip_reason shall_skip(Relay_log_info *rli)
Decide if the event shall be skipped, and the reason for skipping it.
Definition: log_event.h:1136
bool is_valid()
Definition: log_event.cc:1344
virtual uint8 get_mts_dbs(Mts_db_names *arg, Rpl_filter *rpl_filter)
The method fills in pointers to event's database name c-strings to a supplied array.
Definition: log_event.h:1055
ha_checksum crc
Placeholder for event checksum while writing to binlog.
Definition: log_event.h:689
virtual size_t get_data_size()
Definition: log_event.h:879
bool wrapper_my_b_safe_write(Basic_ostream *ostream, const uchar *buf, size_t data_length)
Write the given buffer to the given output stream, updating the checksum if checksums are enabled.
Definition: log_event.cc:1230
enum_event_cache_type
Definition: log_event.h:570
@ EVENT_CACHE_COUNT
Definition: log_event.h:592
@ EVENT_INVALID_CACHE
Definition: log_event.h:571
@ EVENT_NO_CACHE
Definition: log_event.h:588
@ EVENT_STMT_CACHE
Definition: log_event.h:577
@ EVENT_TRANSACTIONAL_CACHE
Definition: log_event.h:583
enum_skip_reason
Enumeration of what kinds of skipping (and non-skipping) that can occur when the slave executes an ev...
Definition: log_event.h:550
@ EVENT_SKIP_IGNORE
Skip event by ignoring it.
Definition: log_event.h:561
@ EVENT_SKIP_COUNT
Skip event and decrease skip counter.
Definition: log_event.h:566
@ EVENT_SKIP_NOT
Don't skip event.
Definition: log_event.h:554
bool m_free_temp_buf_in_destructor
Definition: log_event.h:658
bool contains_partition_info(bool)
Definition: log_event.cc:2496
bool is_relay_log_event() const
Definition: log_event.h:828
Log_event(Log_event_header *header, Log_event_footer *footer, enum_event_cache_type cache_type_arg, enum_event_logging_type logging_type_arg)
This minimal constructor is for when you are not even sure that there is a valid THD.
Definition: log_event.cc:977
bool is_ignorable_event() const
Definition: log_event.h:831
ulonglong future_event_relay_log_pos
A copy of the main rli value stored into event to pass to MTS worker rli.
Definition: log_event.h:719
virtual Log_event_type get_type_code() const
Definition: log_event.h:798
int update_pos(Relay_log_info *rli)
Update the relay log position.
Definition: log_event.h:1128
virtual int do_apply_event_worker(Slave_worker *w)
Definition: log_event.cc:1025
void set_artificial_event()
Definition: log_event.h:816
const char * get_type_str() const
Returns the human readable name of this event's type.
Definition: log_event.cc:941
time_t get_time()
Prints a "session_var=value" string.
Definition: log_event.cc:852
bool write_footer(Basic_ostream *ostream)
Definition: log_event.cc:1239
Relay_log_info * worker
MTS: associating the event with either an assigned Worker or Coordinator.
Definition: log_event.h:714
bool is_using_trans_cache() const
Definition: log_event.h:837
enum enum_mts_event_exec_mode get_mts_execution_mode(bool mts_in_group)
MTS Coordinator finds out a way how to execute the current event.
Definition: log_event.h:963
virtual enum_skip_reason do_shall_skip(Relay_log_info *rli)
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:1047
db_worker_hash_entry * mts_assigned_partitions[MAX_DBS_IN_EVENT_MTS]
Partition info associate with event to deliver to MTS event applier.
Definition: log_event.h:726
virtual bool write(Basic_ostream *ostream)
Definition: log_event.h:786
ulong rbr_exec_mode
A storage to cache the global system variable's value.
Definition: log_event.h:673
virtual void set_mts_isolate_group()
Definition: log_event.h:1035
THD * thd
Definition: log_event.h:722
int apply_gtid_event(Relay_log_info *rli)
Apply the GTID event in curr_group_data to the database.
Definition: log_event.cc:3032
virtual bool write_data_body(Basic_ostream *)
Definition: log_event.h:795
void register_temp_buf(char *buf, bool free_in_destructor=true)
Definition: log_event.h:865
virtual uint8 mts_number_dbs()
Definition: log_event.h:1072
void free_temp_buf()
Definition: log_event.h:869
bool is_mts_group_isolated()
Definition: log_event.h:1079
ulong exec_time
Definition: log_event.h:661
virtual bool is_rbr_logging_format() const
Return true if the event has to be logged using RBR for DMLs.
Definition: log_event.h:809
virtual ~Log_event()
Definition: log_event.h:864
enum_event_logging_type event_logging_type
Defines when information, i.e.
Definition: log_event.h:685
enum_event_logging_type
Definition: log_event.h:595
@ EVENT_NORMAL_LOGGING
Definition: log_event.h:601
@ EVENT_IMMEDIATE_LOGGING
Definition: log_event.h:606
@ EVENT_INVALID_LOGGING
Definition: log_event.h:596
@ EVENT_CACHE_LOGGING_COUNT
Definition: log_event.h:610
binary_log::Log_event_header * common_header
The Log_event_header class contains the variable present in the common header.
Definition: log_event.h:702
char * temp_buf
Definition: log_event.h:651
virtual bool is_sbr_logging_format() const
Return true if the event has to be logged using SBR for DMLs.
Definition: log_event.h:805
virtual int pack_info(Protocol *protocol)
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:1095
bool is_using_immediate_logging() const
Definition: log_event.h:843
void set_relay_log_event()
Definition: log_event.h:824
virtual bool write_data_header(Basic_ostream *)
Definition: log_event.h:794
static void init_show_field_list(mem_root_deque< Item * > *field_list)
init_show_field_list() prepares the column names and types for the output of SHOW BINLOG EVENTS; it i...
Definition: log_event.cc:1128
bool is_artificial_event() const
Definition: log_event.h:825
virtual int do_update_pos(Relay_log_info *rli)
Advance relay log coordinates.
Definition: log_event.cc:1039
virtual bool ends_group() const
Definition: log_event.h:1098
bool need_checksum()
A decider of whether to trigger checksum computation or not.
Definition: log_event.cc:1157
virtual void claim_memory_ownership(bool claim)
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.h:862
Slave_worker * get_slave_worker(Relay_log_info *rli)
The method maps the event to a Worker and return a pointer to it.
Definition: log_event.cc:2624
This is the subclass of Previous_gtids_event and Log_event It is used to record the gtid_executed in ...
Definition: log_event.h:4005
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:13617
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:13624
char * get_str(size_t *length, const Gtid_set::String_format *string_format) const
Return the formatted string, or NULL on error.
Definition: log_event.cc:13598
int pack_info(Protocol *) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:13561
int do_apply_event(Relay_log_info const *) override
Primitive to apply an event to the database.
Definition: log_event.h:4088
int add_to_set(Gtid_set *gtid_set) const
Add all GTIDs from this event to the given Gtid_set.
Definition: log_event.cc:13587
size_t get_data_size() override
Definition: log_event.h:4019
Previous_gtids_log_event(const Gtid_set *set)
Definition: log_event.cc:13541
enum_skip_reason do_shall_skip(Relay_log_info *) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.h:4083
bool write(Basic_ostream *ostream) override
Definition: log_event.h:4027
~Previous_gtids_log_event() override=default
const uchar * get_buf()
Return the encoded buffer, or NULL on error.
Definition: log_event.h:4064
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:13535
Definition: protocol.h:33
A Query event is written to the binary log whenever the database is modified on the master,...
Definition: log_event.h:1284
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:5124
bool need_sql_require_primary_key
Whether or not the statement represented by this event requires Q_SQL_REQUIRE_PRIMARY_KEY to be logge...
Definition: log_event.h:1482
bool is_sbr_logging_format() const override
When a query log event contains a non-transaction control statement, we assume that it is changing da...
Definition: log_event.h:1452
bool is_trans_keyword() const
Definition: log_event.h:1420
bool m_skip_temp_tables_handling_by_worker
Instructs the applier to skip temporary tables handling.
Definition: log_event.h:1322
Query_log_event()
The simplest constructor that could possibly work.
Definition: log_event.cc:3659
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:5138
virtual ulong get_post_header_size_for_derived()
Definition: log_event.h:1404
bool starts_group() const override
Notice, DDL queries are logged without BEGIN/COMMIT parentheses and identification of such single-que...
Definition: log_event.h:1460
uchar mts_number_dbs() override
Definition: log_event.h:1373
my_thread_id slave_proxy_id
Definition: log_event.h:1295
void set_skip_temp_tables_handling_by_worker()
Definition: log_event.h:1324
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:5225
bool has_ddl_committed
The flag indicates whether the DDL query has been (already) committed or not.
Definition: log_event.h:1315
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:4405
~Query_log_event() override
Definition: log_event.h:1389
void attach_temp_tables_worker(THD *, const Relay_log_info *)
Associating slave Worker thread to a subset of temporary tables.
Definition: log_event.cc:4382
bool write(Basic_ostream *ostream) override
Query_log_event::write().
Definition: log_event.cc:3366
bool rollback_injected_by_coord
True if this is a ROLLBACK event injected by the mts coordinator to finish a group corresponding to a...
Definition: log_event.h:1303
bool is_query_prefix_match(const char *pattern, uint p_len)
Definition: log_event.h:1475
uint8 get_mts_dbs(Mts_db_names *arg, Rpl_filter *rpl_filter) override
Definition: log_event.h:1348
bool needs_default_table_encryption
Whether or not the statement represented by this event requires Q_DEFAULT_TABLE_ENCRYPTION to be logg...
Definition: log_event.h:1486
static size_t get_query(const char *buf, size_t length, const Format_description_event *fd_event, const char **query_arg)
Return the query string pointer (and its size) from a Query log event using only the event buffer (we...
Definition: log_event.cc:5174
const char * get_db() override
Definition: log_event.h:1335
int pack_info(Protocol *protocol) override
This (which is used only for SHOW BINLOG EVENTS) could be updated to print SET @session_var=.
Definition: log_event.cc:3315
Log_event_header::Byte * data_buf
Definition: log_event.h:1286
bool ends_group() const override
Definition: log_event.h:1465
bool is_skip_temp_tables_handling_by_worker()
Definition: log_event.h:1328
virtual bool write_post_header_for_derived(Basic_ostream *)
Definition: log_event.h:1397
void detach_temp_tables_worker(THD *, const Relay_log_info *)
Dissociating slave Worker thread from its thd->temporary_tables to possibly update the involved entri...
Definition: log_event.cc:4396
Logs random seed used by the next RAND(), and by PASSWORD() in 4.1.0.
Definition: log_event.h:1653
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:5958
bool is_sbr_logging_format() const override
Return true if the event has to be logged using SBR for DMLs.
Definition: log_event.h:1680
~Rand_log_event() override=default
size_t get_data_size() override
Definition: log_event.h:1675
Rand_log_event(THD *thd_arg, ulonglong seed1_arg, ulonglong seed2_arg, enum_event_cache_type cache_type_arg, enum_event_logging_type logging_type_arg)
Definition: log_event.h:1656
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:6003
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:5984
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:5934
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:5998
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:5952
Definition: rpl_rli.h:203
This will be deprecated when we move to using sequence ids.
Definition: log_event.h:1972
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:5646
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:5534
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:5789
~Rotate_log_event() override=default
Rotate_log_event(const char *new_log_ident_arg, size_t ident_len_arg, ulonglong pos_arg, uint flags)
Definition: log_event.cc:5570
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:5607
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:5617
size_t get_data_size() override
Definition: log_event.h:1985
Definition: log_event.h:2537
bool is_enabled()
If instrumentation is enabled this member function SHALL return true.
Definition: log_event.h:2564
Rows_applier_psi_stage & operator=(const Rows_applier_psi_stage &rhs)
void inc_n_rows_applied(ulonglong delta)
Updates the counter of processed rows.
Definition: log_event.h:2610
ulonglong m_n_rows_applied
Counter that is unconditionally incremented on each row that is processed.
Definition: log_event.h:2552
ulonglong get_n_rows_applied()
Gets the value of the counter of rows that have been processed.
Definition: log_event.h:2616
Rows_applier_psi_stage()
Definition: log_event.h:2555
void update_work_estimated_and_completed(const uchar *cursor, const uchar *begin, const uchar *end)
This member function shall update the progress and reestimate the remaining work needed.
Definition: log_event.h:2577
void set_progress(PSI_stage_progress *progress)
Definition: log_event.h:2557
void end_work()
Resets this object.
Definition: log_event.h:2601
PSI_stage_progress * m_progress
A cached pointer to this stage PSI_stage_progress.
Definition: log_event.h:2545
Definition: log_event.h:2826
KEY ** m_key_info
Definition: log_event.h:2846
Key_compare(KEY **ki=nullptr)
Definition: log_event.h:2839
bool operator()(uchar *k1, uchar *k2) const
Definition: log_event.h:2840
Common base class for all row-containing log events.
Definition: log_event.h:2653
MY_BITMAP write_set_backup
This bitmap is used as a backup for the write set while we calculate the values for any hidden genera...
Definition: log_event.h:3149
uint32 m_bitbuf[128/(sizeof(uint32) *8)]
Definition: log_event.h:2807
virtual Log_event_type get_general_type_code()=0
uchar * m_rows_end
Definition: log_event.h:2816
int close_record_scan()
Does the cleanup.
Definition: log_event.cc:8869
int handle_idempotent_and_ignored_errors(Relay_log_info const *rli, int *err)
Private member function called while handling idempotent errors.
Definition: log_event.cc:8814
bool write_data_header(Basic_ostream *ostream) override
Definition: log_event.cc:10410
virtual int do_before_row_operations(const Relay_log_info *const log)=0
uchar * m_rows_buf
Definition: log_event.h:2814
@ RLE_NO_FLAGS
Definition: log_event.h:2683
uint m_rows_lookup_algorithm
The algorithm to use while searching for rows using the before image.
Definition: log_event.h:2788
TABLE * m_table
Definition: log_event.h:2767
ColumnViewPtr m_column_view
Wrapper around TABLE *m_table that abstracts the table field set iteration logic, since it is not man...
Definition: log_event.h:2949
bool is_rbr_logging_format() const override
Return true if the event has to be logged using RBR for DMLs.
Definition: log_event.h:2936
int do_hash_row(Relay_log_info const *rli)
Populates the m_hash when using HASH_SCAN.
Definition: log_event.cc:9264
Hash_slave_rows m_hash
Hash table that will hold the entries for while using HASH_SCAN algorithm to search and update/delete...
Definition: log_event.h:2782
uchar * m_distinct_key_spare_buf
A spare buffer which will be used when saving the distinct keys for doing an index scan with HASH_SCA...
Definition: log_event.h:2854
int do_hash_scan_and_update(Relay_log_info const *rli)
Implementation of the hash_scan and update algorithm.
Definition: log_event.cc:9507
int add_row_data(uchar *data, size_t length)
Definition: log_event.h:2708
void decide_row_lookup_algorithm_and_key() SUPPRESS_UBSAN_CLANG10
Definition: log_event.cc:8408
uint m_key_index
Definition: log_event.h:2824
int do_apply_row(Relay_log_info const *rli)
Commodity wrapper around do_exec_row(), that deals with resetting the thd reference in the table.
Definition: log_event.cc:8844
int row_operations_scan_and_key_setup()
Definition: log_event.cc:8520
MY_BITMAP const * get_cols_ai() const
Definition: log_event.h:2717
Rows_log_event(THD *, TABLE *, const Table_id &table_id, MY_BITMAP const *cols, bool is_transactional, Log_event_type event_type, const unsigned char *extra_row_ndb_info)
Definition: log_event.cc:7755
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:10272
MY_BITMAP m_local_cols_ai
Bitmap denoting columns available in the after-image as they appear in the table setup.
Definition: log_event.h:2804
uchar * m_key
Definition: log_event.h:2823
int do_index_scan_and_update(Relay_log_info const *rli)
Implementation of the index scan and update algorithm.
Definition: log_event.cc:9020
int do_scan_and_update(Relay_log_info const *rli)
This member function scans the table and applies the changes that had been previously hashed.
Definition: log_event.cc:9332
virtual int do_add_row_data(uchar *data, size_t length)
Definition: log_event.cc:8137
Rows_applier_psi_stage m_psi_progress
Definition: log_event.h:2656
static bool is_trx_retryable_upon_engine_error(int error)
Helper function to check whether the storage engine error allows for the transaction to be retried or...
Definition: log_event.cc:8611
size_t get_data_size() override
Definition: log_event.cc:8098
const char * get_db() override
Definition: log_event.h:2739
uint16 flag_set
Definition: log_event.h:2660
row_lookup_mode
Definition: log_event.h:2662
@ ROW_LOOKUP_INDEX_SCAN
Definition: log_event.h:2665
@ ROW_LOOKUP_UNDEFINED
Definition: log_event.h:2663
@ ROW_LOOKUP_NOT_NEEDED
Definition: log_event.h:2664
@ ROW_LOOKUP_TABLE_SCAN
Definition: log_event.h:2666
@ ROW_LOOKUP_HASH_SCAN
Definition: log_event.h:2667
virtual bool read_write_bitmaps_cmp(const TABLE *table) const =0
Compares the table's read/write_set with the columns included in this event's before-image and/or aft...
virtual int skip_after_image_for_update_event(const Relay_log_info *rli, const uchar *curr_bi_start)
Seek past the after-image of an update event, in case a row was processed without reading the after-i...
Definition: log_event.h:3074
bool is_auto_inc_in_extra_columns(const Relay_log_info *const rli)
Helper function to check whether there is an auto increment column on the table where the event is to...
Definition: log_event.cc:8593
uchar * m_rows_cur
Definition: log_event.h:2815
const Table_id & get_table_id() const
Definition: log_event.h:2718
uint m_row_count
Definition: log_event.h:2742
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:9611
int next_record_scan(bool first_read)
Fetches next row.
Definition: log_event.cc:8882
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:10524
int do_table_scan_and_update(Relay_log_info const *rli)
Implementation of the legacy table_scan and update algorithm.
Definition: log_event.cc:9528
MY_BITMAP m_local_cols
Bitmap denoting columns available in the image as they appear in the table setup.
Definition: log_event.h:2776
int open_record_scan()
Initializes scanning of rows.
Definition: log_event.cc:8944
void clear_flags(flag_set flags_arg)
Definition: log_event.h:2688
virtual int do_exec_row(const Relay_log_info *const rli)=0
std::set< uchar *, Key_compare >::iterator m_itr
Definition: log_event.h:2849
enum_error
Enumeration of the errors that can be returned.
Definition: log_event.h:2673
@ ERR_TABLE_LIMIT_EXCEEDED
No more room for tables.
Definition: log_event.h:2676
@ ERR_BAD_TABLE_DEF
Table definition does not match.
Definition: log_event.h:2678
@ ERR_OPEN_FAILURE
Failure to open table.
Definition: log_event.h:2674
@ ERR_RBR_TO_SBR
daisy-chanining RBR to SBR not allowed
Definition: log_event.h:2679
@ ERR_OUT_OF_MEM
Out of memory.
Definition: log_event.h:2677
@ ERR_OK
No error.
Definition: log_event.h:2675
int row_operations_scan_and_key_teardown(int error)
Definition: log_event.cc:8563
int update_generated_columns(MY_BITMAP const &fields_to_update)
Updates the generated columns of the TABLE object referenced by m_table, that have an active bit in t...
Definition: log_event.cc:8075
virtual int do_after_row_operations(const Relay_log_info *const log, int error)=0
MY_BITMAP const * get_cols() const
Definition: log_event.h:2716
std::set< uchar *, Key_compare > m_distinct_keys
Definition: log_event.h:2848
void do_post_row_operations(Relay_log_info const *rli, int err)
Private member function called after updating/deleting a row.
Definition: log_event.cc:8726
const uchar * m_curr_row
Definition: log_event.h:2821
MY_BITMAP m_cols_ai
Bitmap for columns available in the after image, if present.
Definition: log_event.h:2797
int add_key_to_distinct_keyset()
Populates the m_distinct_keys with unique keys to be modified during HASH_SCAN over keys.
Definition: log_event.cc:9000
KEY * m_key_info
Definition: log_event.h:2825
int unpack_current_row(const Relay_log_info *const rli, MY_BITMAP const *cols, bool is_after_image, bool only_seek=false)
Unpack the current row image from the event into m_table->record[0].
Definition: log_event.cc:7985
int do_update_pos(Relay_log_info *rli) override
The method either increments the relay log position or commits the current statement and increments t...
Definition: log_event.cc:10378
~Rows_log_event() override
Definition: log_event.cc:7965
void set_flags(flag_set flags_arg)
Definition: log_event.h:2687
friend class Old_rows_log_event
Definition: log_event.h:3141
const uchar * m_curr_row_end
Definition: log_event.h:2822
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:10491
uint32 m_bitbuf_ai[128/(sizeof(uint32) *8)]
Definition: log_event.h:2808
MY_BITMAP m_cols
Definition: log_event.h:2769
It is used to record the original query for the rows events in RBR.
Definition: log_event.h:3613
size_t get_data_size() override
Definition: log_event.h:3648
~Rows_query_log_event() override
Definition: log_event.h:3641
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:12932
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:12922
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:12873
int pack_info(Protocol *) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:12880
Rows_query_log_event(THD *thd_arg, const char *query, size_t query_len)
Definition: log_event.h:3616
Rpl_filter.
Definition: rpl_filter.h:214
const char * get_rewrite_db(const char *db, size_t *new_len)
Definition: rpl_filter.cc:1174
bool is_rewrite_empty()
Definition: rpl_filter.cc:569
Represents a bidirectional map between SID and SIDNO.
Definition: rpl_gtid.h:724
rpl_sidno add_sid(const rpl_sid &sid)
Add the given SID to this map if it does not already exist.
Definition: rpl_gtid_sid_map.cc:63
Mix-in to handle the message logging and reporting for relay log info and master log info structures.
Definition: rpl_reporting.h:53
Definition: rpl_rli_pdb.h:498
Definition: log_event.h:1903
Stop_log_event()
Definition: log_event.h:1906
~Stop_log_event() override=default
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:6947
Log_event_type get_type_code() const override
Definition: log_event.h:1928
enum_skip_reason do_shall_skip(Relay_log_info *) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.h:1935
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:6967
String class wrapper with a preallocated buffer of size buff_sz.
Definition: sql_string.h:660
Using this class is fraught with peril, and you need to be very careful when doing so.
Definition: sql_string.h:168
For each client connection we create a separate thread with THD serving as a thread/connection descri...
Definition: sql_lexer_thd.h:34
Each table share has a table id, it is mainly used for row based replication.
Definition: table_id.h:40
Table_map_log_event which maps a table definition to a number.
Definition: log_event.h:2330
const Table_id & get_table_id() const
Definition: log_event.h:2392
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:11041
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:10914
uint8 mts_number_dbs() override
Definition: log_event.h:2402
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:11050
@ TM_GENERATED_INVISIBLE_PK_F
Table has generated invisible primary key.
Definition: log_event.h:2367
@ TM_BIT_LEN_EXACT_F
Definition: log_event.h:2360
@ TM_NO_FLAGS
Definition: log_event.h:2359
@ TM_REFERRED_FK_DB_F
Definition: log_event.h:2361
const char * get_db_name() const
Definition: log_event.h:2394
virtual int save_field_metadata()
Save the field metadata based on the real_type of the field.
Definition: log_event.cc:10612
bool init_set_str_value_field()
Definition: log_event.cc:11357
flag_set get_flags(flag_set flag) const
Definition: log_event.h:2370
~Table_map_log_event() override
bool init_geometry_type_field()
Definition: log_event.cc:11405
bool init_charset_field(std::function< bool(const Field *)> include_type, Optional_metadata_field_type default_charset_type, Optional_metadata_field_type column_charset_type)
Capture and serialize character sets.
Definition: log_event.cc:11251
bool init_primary_key_field()
Definition: log_event.cc:11422
enum_flag
Definition: log_event.h:2347
@ ENUM_FLAG_COUNT
Nothing here right now, but the flags support is there in preparation for changes that are coming.
Definition: log_event.h:2354
bool is_rbr_logging_format() const override
Return true if the event has to be logged using RBR for DMLs.
Definition: log_event.h:2464
bool init_column_visibility_field()
Definition: log_event.cc:11470
const char * get_table_name() const
Definition: log_event.h:2393
uint8 get_mts_dbs(Mts_db_names *arg, Rpl_filter *rpl_filter) override
Definition: log_event.h:2414
bool write_data_header(Basic_ostream *ostream) override
Definition: log_event.cc:11055
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:11069
bool init_enum_str_value_field()
Definition: log_event.cc:11384
bool init_column_name_field()
Definition: log_event.cc:11345
Table_map_log_event(THD *thd_arg, TABLE *tbl, const Table_id &tid, bool is_transactional)
Definition: log_event.cc:10634
ColumnViewPtr m_column_view
Wrapper around TABLE *m_table that abstracts the table field set iteration logic, since it is not man...
Definition: log_event.h:2488
const char * get_db() override
Definition: log_event.h:2401
size_t get_data_size() override
Definition: log_event.h:2396
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:11502
TABLE * m_table
Definition: log_event.h:2474
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:10795
@ TYPE_CODE
Definition: log_event.h:2333
void init_metadata_fields()
Capture the optional metadata fields which should be logged into table_map_log_event and serialize th...
Definition: log_event.cc:11197
enum_error
Enumeration of the errors that can be returned.
Definition: log_event.h:2338
@ ERR_OK
No error.
Definition: log_event.h:2340
@ ERR_TABLE_LIMIT_EXCEEDED
No more room for tables.
Definition: log_event.h:2341
@ ERR_OPEN_FAILURE
Failure to open table.
Definition: log_event.h:2339
@ ERR_OUT_OF_MEM
Out of memory.
Definition: log_event.h:2342
@ ERR_BAD_TABLE_DEF
Table definition does not match.
Definition: log_event.h:2343
@ ERR_RBR_TO_SBR
daisy-chanining RBR to SBR not allowed
Definition: log_event.h:2344
bool has_generated_invisible_primary_key() const
Definition: log_event.cc:10791
StringBuffer< 1024 > m_metadata_buf
Definition: log_event.h:2477
bool init_signedness_field()
Definition: log_event.cc:11220
This is the subclass of Transaction_context_event and Log_event This class encodes the transaction_co...
Definition: log_event.h:4118
bool is_gtid_specified()
Return true if transaction has GTID_NEXT specified, false otherwise.
Definition: log_event.h:4224
static int get_data_set_size(std::list< const char * > *set)
Definition: log_event.cc:13859
void add_write_set(const char *hash)
Add a hash which identifies a inserted/updated/deleted row on the ongoing transaction.
Definition: log_event.cc:13871
void add_read_set(const char *hash)
Add a hash which identifies a read row on the ongoing transaction.
Definition: log_event.cc:13876
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:13751
Gtid_set * get_snapshot_version()
Return the transaction snapshot timestamp.
Definition: log_event.h:4209
size_t get_data_size() override
Definition: log_event.cc:13758
int do_apply_event(Relay_log_info const *) override
Primitive to apply an event to the database.
Definition: log_event.h:4169
Sid_map * sid_map
The Sid_map to use for creating the Gtid_set.
Definition: log_event.h:4121
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:13726
bool read_snapshot_version()
Read snapshot version from encoded buffers.
Definition: log_event.cc:13839
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:13718
Gtid_set * snapshot_version
A gtid_set which is used to store the transaction set used for conflict detection.
Definition: log_event.h:4124
Transaction_context_log_event(const char *server_uuid_arg, bool using_trans, my_thread_id thread_id_arg, bool is_gtid_specified_arg)
Definition: log_event.cc:13633
size_t get_event_length()
Definition: log_event.cc:13770
std::list< const char * > * get_read_set()
Return a pointer to read-set list.
Definition: log_event.h:4196
size_t get_snapshot_version_size()
Definition: log_event.cc:13853
bool write_data_header(Basic_ostream *ostream) override
Definition: log_event.cc:13775
~Transaction_context_log_event() override
Definition: log_event.cc:13701
bool write_data_set(Basic_ostream *ostream, std::list< const char * > *set)
Definition: log_event.cc:13819
std::list< const char * > * get_write_set()
Return a pointer to write-set list.
Definition: log_event.h:4184
my_thread_id get_thread_id()
Return the id of the committing thread.
Definition: log_event.h:4219
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:13791
size_t to_string(char *buf, ulong len) const
Definition: log_event.cc:13712
const char * get_server_uuid()
Return the server uuid.
Definition: log_event.h:4214
bool write_snapshot_version(Basic_ostream *ostream)
Definition: log_event.cc:13803
Definition: log_event.h:3703
Mts_db_names & get_mts_db_names()
Definition: log_event.h:3712
Mts_db_names m_mts_db_names
Definition: log_event.h:3706
void reset()
Definition: log_event.h:3711
virtual ~Applier_context()
Definition: log_event.h:3710
Applier_context()=default
Definition: log_event.h:3699
size_t get_event_length()
Definition: log_event.h:3746
void set_mts_dbs(Mts_db_names &arg)
Definition: log_event.cc:14124
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:14103
uint8 get_mts_dbs(Mts_db_names *arg, Rpl_filter *rpl_filter) override
The method fills in pointers to event's database name c-strings to a supplied array.
Definition: log_event.cc:14109
bool apply_payload_event(Relay_log_info const *rli, const uchar *event_buf)
Definition: log_event.cc:14194
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:14280
bool ends_group() const override
Definition: log_event.cc:14327
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:14285
~Transaction_payload_log_event() override=default
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:14316
size_t get_data_size() override
Definition: log_event.cc:14095
Transaction_payload_log_event(THD *thd_arg, const char *payload, uint64_t payload_size, uint16_t compression_type, uint64_t uncompressed_size)
Definition: log_event.h:3715
Applier_context m_applier_ctx
Definition: log_event.h:3751
uint8 mts_number_dbs() override
Definition: log_event.cc:14139
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:14143
Log row updates with a before image.
Definition: log_event.h:3276
int do_exec_row(const Relay_log_info *const) override
Definition: log_event.cc:12644
static bool binlog_row_logging_function(THD *thd, TABLE *table, bool is_transactional, const uchar *before_record, const uchar *after_record)
Definition: log_event.cc:12562
bool read_write_bitmaps_cmp(const TABLE *table) const override
Compares the table's read/write_set with the columns included in this event's before-image and/or aft...
Definition: log_event.h:3306
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:12607
Update_rows_log_event(THD *, TABLE *, const Table_id &table_id, MY_BITMAP const *cols_bi, MY_BITMAP const *cols_ai, bool is_transactional, const unsigned char *extra_row_ndb_info)
int do_after_row_operations(const Relay_log_info *const, int) override
Definition: log_event.cc:12637
static binary_log::Log_event_type get_update_rows_event_type(const THD *thd_arg)
Auxiliary function used in the (THD*, ...) constructor to determine the type code based on configurat...
Definition: log_event.cc:12533
int do_before_row_operations(const Relay_log_info *const) override
Definition: log_event.cc:12614
~Update_rows_log_event() override
Definition: log_event.cc:12585
Log_event_type get_general_type_code() override
Definition: log_event.h:3315
int skip_after_image_for_update_event(const Relay_log_info *rli, const uchar *curr_bi_start) override
Seek past the after-image of an update event, in case a row was processed without reading the after-i...
Definition: log_event.cc:9206
void init(MY_BITMAP const *cols)
Definition: log_event.cc:12569
@ TYPE_CODE
Definition: log_event.h:3280
Every time a query uses the value of a user variable, a User_var_log_event is written before the Quer...
Definition: log_event.h:1843
~User_var_log_event() override=default
bool is_sbr_logging_format() const override
Return true if the event has to be logged using SBR for DMLs.
Definition: log_event.h:1889
bool is_deferred()
Definition: log_event.h:1878
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:6895
query_id_t query_id
Definition: log_event.h:1847
void set_deferred(query_id_t qid)
Definition: log_event.h:1883
User_var_log_event(THD *thd_arg, const char *name_arg, uint name_len_arg, char *val_arg, ulong val_len_arg, Item_result type_arg, uint charset_number_arg, uchar flags_arg, enum_event_cache_type cache_type_arg, enum_event_logging_type logging_type_arg)
Definition: log_event.h:1848
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:6517
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:6786
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:6914
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:6900
bool deferred
Definition: log_event.h:1846
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:6615
This is the subclass of View_change_log_event and Log_event This class created the view_change_log_ev...
Definition: log_event.h:4253
std::map< std::string, std::string > * get_certification_info()
Returns the certification info.
Definition: log_event.h:4314
int do_update_pos(Relay_log_info *rli) override
Advance relay log coordinates.
Definition: log_event.cc:14016
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:13943
bool write_data_body(Basic_ostream *ostream) override
Definition: log_event.cc:14033
void set_seq_number(rpl_gno number)
Set the certification sequence number.
Definition: log_event.h:4323
char * get_view_id()
Returns the view id.
Definition: log_event.h:4296
~View_change_log_event() override
Definition: log_event.cc:13910
size_t get_size_data_map(std::map< std::string, std::string > *map)
Definition: log_event.cc:13924
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:13949
size_t get_data_size() override
Definition: log_event.cc:13915
bool write_data_header(Basic_ostream *ostream) override
Definition: log_event.cc:14022
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:13975
rpl_gno get_seq_number()
Returns the certification sequence number.
Definition: log_event.h:4328
bool write_data_map(Basic_ostream *ostream, std::map< std::string, std::string > *map)
Definition: log_event.cc:14041
void set_certification_info(std::map< std::string, std::string > *info, size_t *event_size)
Sets the certification info in the event.
Definition: log_event.cc:14077
size_t to_string(char *buf, ulong len) const
Definition: log_event.cc:13938
View_change_log_event(const char *view_id)
Definition: log_event.cc:13886
Log row insertions and updates.
Definition: log_event.h:3189
@ TYPE_CODE
Definition: log_event.h:3193
int do_before_row_operations(const Relay_log_info *const) override
Definition: log_event.cc:11978
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:12422
Log_event_type get_general_type_code() override
Definition: log_event.h:3220
bool read_write_bitmaps_cmp(const TABLE *table) const override
Compares the table's read/write_set with the columns included in this event's before-image and/or aft...
Definition: log_event.h:3209
Write_rows_log_event(THD *, TABLE *, const Table_id &table_id, bool is_transactional, const unsigned char *extra_row_ndb_info)
Definition: log_event.cc:11944
int do_exec_row(const Relay_log_info *const) override
Definition: log_event.cc:12399
int write_row(const Relay_log_info *const, const bool)
Write the current row into event's table.
Definition: log_event.cc:12164
int do_after_row_operations(const Relay_log_info *const, int) override
Definition: log_event.cc:12083
static bool binlog_row_logging_function(THD *thd, TABLE *table, bool is_transactional, const uchar *before_record, const uchar *after_record)
Definition: log_event.cc:11958
Similar to Xid_log_event except that.
Definition: log_event.h:1784
static const int xid_bufs_size
Definition: log_event.h:1787
bool do_commit(THD *thd) override
Differs from Xid_log_event::do_commit in that it carries out XA prepare (not the commit).
Definition: log_event.cc:6473
XA_prepare_log_event(THD *thd_arg, XID *xid_arg, bool one_phase_arg=false)
Definition: log_event.h:1791
size_t get_data_size() override
Definition: log_event.h:1806
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:6411
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:6439
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:6397
Log_event_type get_type_code() const override
Definition: log_event.h:1803
Definition: log_event.h:1719
Xid_apply_log_event(THD *thd_arg, Log_event_header *header_arg, Log_event_footer *footer_arg)
Definition: log_event.h:1722
enum_skip_reason do_shall_skip(Relay_log_info *rli) override
Decide if this event shall be skipped or not and the reason for skipping it.
Definition: log_event.cc:6383
bool ends_group() const override
Definition: log_event.h:1731
virtual bool do_commit(THD *thd_arg)=0
int do_apply_event_worker(Slave_worker *rli) override
Worker commits Xid transaction and in case of its transactional info table marks the current group as...
Definition: log_event.cc:6138
~Xid_apply_log_event() override=default
int do_apply_event(Relay_log_info const *rli) override
Primitive to apply an event to the database.
Definition: log_event.cc:6211
This is the subclass of Xid_event defined in libbinlogevent, An XID event is generated for a commit o...
Definition: log_event.h:1740
~Xid_log_event() override=default
bool write(Basic_ostream *ostream) override
Definition: log_event.cc:6064
int pack_info(Protocol *protocol) override
Stores a string representation of this event in the Protocol.
Definition: log_event.cc:6041
size_t get_data_size() override
Definition: log_event.h:1759
bool do_commit(THD *thd_arg) override
The methods combines few commit actions to make it usable as in the single- so multi- threaded case.
Definition: log_event.cc:6097
void claim_memory_ownership(bool claim) override
Allow thread to CLAIM or DISCLAIM the ownership of this object depends on the parameter value passed.
Definition: log_event.cc:6058
Xid_log_event(THD *thd_arg, my_xid x)
Definition: log_event.h:1743
This event is created to contain the file data.
Definition: load_data_events.h:274
const char * db
'db' is filled when the event is created in mysql_load() (the event needs to have a 'db' member to be...
Definition: load_data_events.h:311
unsigned int block_len
Definition: load_data_events.h:298
Event for the first block of file to be loaded, its only difference from Append_block event is that t...
Definition: load_data_events.h:358
This is the abstract base class for binary log events.
Definition: binlog_event.h:826
const Log_event_header * header() const
Return a const pointer to the header of the log event.
Definition: binlog_event.h:926
const Log_event_footer * footer() const
Return a const pointer to the footer of the log event.
Definition: binlog_event.h:934
DELETE_FILE_EVENT occurs when the LOAD DATA failed on the master.
Definition: load_data_events.h:202
const char * db
Definition: load_data_events.h:215
Log row deletions.
Definition: rows_event.h:1098
Event responsible for LOAD DATA execution, it similar to Query_event but before executing the query i...
Definition: load_data_events.h:119
GTID stands for Global Transaction IDentifier It is composed of two parts:
Definition: control_events.h:1006
static const int POST_HEADER_LENGTH
Total length of post header.
Definition: control_events.h:1143
int get_commit_group_ticket_length() const
Returns the length of the packed commit_group_ticket field.
Definition: control_events.cpp:575
int get_server_version_length() const
We only store the immediate_server_version if both server versions are the same.
Definition: control_events.h:1125
int get_commit_timestamp_length() const
Definition: control_events.h:1115
unsigned long long int transaction_length
The length of the transaction in bytes.
Definition: control_events.h:1026
Replication event to ensure to replica that source is alive.
Definition: control_events.h:1527
Replication event to ensure to replica that source is alive.
Definition: control_events.h:1601
Base class for ignorable log events.
Definition: control_events.h:666
Class representing an incident, an occurrence out of the ordinary, that happened on the master.
Definition: control_events.h:432
size_t message_length
Definition: control_events.h:484
Incident_event(enum_incident incident_arg)
This will create an Incident_event with an empty message and set the type_code as INCIDENT_EVENT in t...
Definition: control_events.h:453
char * message
Definition: control_events.h:483
enum_incident
Enumeration of the incidents that can occur for the server.
Definition: control_events.h:437
@ INCIDENT_COUNT
Shall be last event of the enumeration.
Definition: control_events.h:443
@ INCIDENT_NONE
No incident.
Definition: control_events.h:439
An Intvar_event will be created just before a Query_event, if the query uses one of the variables LAS...
Definition: statement_events.h:921
Intvar_event(const char *buf, const Format_description_event *fde)
Constructor receives a packet from the MySQL master or the binary log and decodes it to create an Int...
Definition: statement_events.cpp:483
Definition: control_events.h:1237
size_t buf_size
Definition: control_events.h:1265
const unsigned char * buf
Definition: control_events.h:1266
A Query_event is created for each query that modifies the database, unless the query is logged row-ba...
Definition: statement_events.h:451
unsigned char mts_accessed_dbs
Definition: statement_events.h:640
const char * query
Definition: statement_events.h:534
char mts_accessed_db_names[MAX_DBS_IN_EVENT_MTS][NAME_LEN]
Definition: statement_events.h:641
size_t q_len
Definition: statement_events.h:587
const char * db
Definition: statement_events.h:535
Logs random seed used by the next RAND(), and by PASSWORD() in 4.1.0.
Definition: statement_events.h:1033
Rand_event(unsigned long long seed1_arg, unsigned long long seed2_arg)
Definition: statement_events.h:1043
When a binary log file exceeds a size limit, a ROTATE_EVENT is written at the end of the file that po...
Definition: control_events.h:108
size_t ident_len
Definition: control_events.h:111
unsigned int flags
Definition: control_events.h:112
Common base class for all row-containing binary log events.
Definition: rows_event.h:879
uint16_t m_flags
Definition: rows_event.h:948
enum_flag get_flags() const
Definition: rows_event.h:1027
Table_id m_table_id
Actual event type.
Definition: rows_event.h:947
Rows query event type, which is a subclass of the Ignorable_event, to record the original query for t...
Definition: rows_event.h:1134
char * m_rows_query
Definition: rows_event.h:1162
A stop event is written to the log files under these circumstances:
Definition: control_events.h:371
Stop_event()
It is the minimal constructor, and all it will do is set the type_code as STOP_EVENT in the header ob...
Definition: control_events.h:377
In row-based mode, every row operation event is preceded by a Table_map_event which maps a table defi...
Definition: rows_event.h:524
Optional_metadata_field_type
DEFAULT_CHARSET and COLUMN_CHARSET don't appear together, and ENUM_AND_SET_DEFAULT_CHARSET and ENUM_A...
Definition: rows_event.h:547
unsigned long m_field_metadata_size
The size of field metadata buffer set by calling save_field_metadata()
Definition: rows_event.h:688
std::string m_dbnam
event data size
Definition: rows_event.h:678
uint16_t flag_set
Definition: rows_event.h:533
unsigned char * m_null_bits
field metadata
Definition: rows_event.h:690
unsigned char * m_field_metadata
Definition: rows_event.h:689
unsigned long m_colcnt
Definition: rows_event.h:682
unsigned char * m_coltype
Definition: rows_event.h:683
flag_set m_flags
Definition: rows_event.h:673
std::string m_tblnam
Definition: rows_event.h:680
size_t m_data_size
Definition: rows_event.h:675
Table_id m_table_id
Event post header contents.
Definition: rows_event.h:672
This class is used to combine the information of the ongoing transaction including the write set and ...
Definition: control_events.h:1325
std::list< const char * > write_set
Definition: control_events.h:1365
std::list< const char * > read_set
Definition: control_events.h:1366
const char * server_uuid
Definition: control_events.h:1360
uint32_t thread_id
Definition: control_events.h:1361
bool gtid_specified
Definition: control_events.h:1362
Event that encloses all the events of a transaction.
Definition: control_events.h:727
Transaction_payload_event(const Transaction_payload_event &)=delete
An unknown event should never occur.
Definition: binlog_event.h:964
Log row updates with a before image.
Definition: rows_event.h:1079
Written every time a statement uses a user variable; precedes other events for the statement.
Definition: statement_events.h:804
const char * name
Definition: statement_events.h:853
User_var_event(const char *name_arg, unsigned int name_len_arg, char *val_arg, unsigned long val_len_arg, Value_type type_arg, unsigned int charset_number_arg, unsigned char flags_arg)
This constructor will initialize the instance variables and the type_code, it will be used only by th...
Definition: statement_events.h:820
This class is used to add view change markers in the binary log when a member of the group enters or ...
Definition: control_events.h:1426
char view_id[ENCODED_VIEW_ID_MAX_LEN]
Definition: control_events.h:1478
std::map< std::string, std::string > certification_info
Definition: control_events.h:1482
long long int seq_number
Definition: control_events.h:1480
Log row insertions.
Definition: rows_event.h:1061
An XA_prepare event is generated for a XA prepared transaction.
Definition: control_events.h:580
void * xid
Definition: control_events.h:600
XA_prepare_event(void *xid_arg, bool oph_arg)
The minimal constructor of XA_prepare_event, it initializes the instance variable xid and set the typ...
Definition: control_events.h:609
An XID event is generated for a commit of a transaction that modifies one or more tables of an XA-cap...
Definition: control_events.h:515
uint64_t xid
Definition: control_events.h:532
Xid_event(uint64_t xid_arg)
The minimal constructor of Xid_event, it initializes the instance variable xid and set the type_code ...
Definition: control_events.h:522
A (partial) implementation of std::deque allocating its blocks on a MEM_ROOT.
Definition: mem_root_deque.h:110
Definition: partition_info.h:209
Used to hold information about file and file structure in exchange via non-DB file (....
Definition: sql_exchange.h:79
A table definition from the master.
Definition: rpl_utility.h:248
Maps table id's (integers) to table pointers.
Definition: rpl_tblmap.h:51
Contains the classes representing events operating in the replication stream properties.
#define U
Definition: ctype-tis620.cc:75
ulonglong sql_mode_t
Definition: dd_event.h:37
Fido Client Authentication nullptr
Definition: fido_client_plugin.cc:222
void close_cached_file(IO_CACHE *cache)
Definition: mf_cache.cc:87
bool my_b_inited(const IO_CACHE *info)
Definition: my_sys.h:489
#define MY_WME
Definition: my_sys.h:123
int my_b_copy_to_file(IO_CACHE *cache, FILE *file)
Definition: mf_iocache2.cc:72
bool reinit_io_cache(IO_CACHE *info, enum cache_type type, my_off_t seek_offset, bool use_async_io, bool clear_cache)
Definition: mf_iocache.cc:328
@ WRITE_CACHE
Definition: my_sys.h:285
size_t my_strmov_quoted_identifier(THD *thd, char *buffer, const char *identifier, size_t length)
Definition: log_event.cc:14400
bool is_atomic_ddl_event(Log_event const *evt)
The function checks the argument event properties to deduce whether it represents an atomic DDL.
Definition: log_event.h:4359
ulonglong sql_mode_t
Definition: log_event.h:127
char * str_to_hex(char *to, const char *from, size_t len)
Transforms a string into "" or its expression in 0x... form.
Definition: log_event.cc:778
std::pair< bool, binary_log::Log_event_basic_info > extract_log_event_basic_info(Log_event *log_event)
Extract basic info about an event: type, query, is it ignorable.
Definition: log_event.cc:14439
bool binary_event_serialize(EVENT *ev, Basic_ostream *ostream)
Serialize an binary event to the given output stream.
Definition: log_event.h:4394
bool net_field_length_checked(const uchar **packet, size_t *max_length, T *out)
Read an integer in net_field_length format, guarding against read out of bounds and advancing the pos...
Definition: log_event.cc:738
TYPELIB binlog_checksum_typelib
Definition: log_event.cc:198
bool is_atomic_ddl(THD *thd, bool using_trans)
The function lists all DDL instances that are supported for crash-recovery (WL9175).
Definition: log_event.cc:3732
int ignored_error_code(int err_code)
Ignore error code specified on command line.
Definition: log_event.cc:584
bool is_gtid_event(const Log_event *evt)
Definition: log_event.h:4331
MYSQL_PLUGIN_IMPORT char server_version[SERVER_VERSION_LENGTH]
Definition: log_event.h:128
std::unique_ptr< cs::util::ReplicatedColumnsView > ColumnViewPtr
Definition: log_event.h:124
#define MAX_DBS_IN_EVENT_MTS
The maximum number of updated databases that a status of Query-log-event can carry.
Definition: binlog_event.h:106
size_t my_strmov_quoted_identifier_helper(int q, char *buffer, const char *identifier, size_t length)
Definition: log_event.cc:14413
bool is_session_control_event(Log_event *evt)
Check if the given event is a session control event, one of User_var_event, Intvar_event or Rand_even...
Definition: log_event.h:4345
PSI_memory_key key_memory_Rows_query_log_event_rows_query
Definition: log_event.cc:185
const int64 SEQ_MAX_TIMESTAMP
Maximum value of binlog logical timestamp.
Definition: log_event.h:358
#define MAX_TIME_ZONE_NAME_LENGTH
Maximum length of time zone name that we support (Time zone name is char(64) in db).
Definition: binlog_event.h:119
#define OVER_MAX_DBS_IN_EVENT_MTS
When the actual number of databases exceeds MAX_DBS_IN_EVENT_MTS the value of OVER_MAX_DBS_IN_EVENT_M...
Definition: binlog_event.h:113
MYSQL_PLUGIN_IMPORT ulong server_id
Definition: log_event.h:112
static bool copy_event_cache_to_file_and_reinit(IO_CACHE *cache, FILE *file, bool flush_stream)
Definition: log_event.h:3653
PSI_memory_key key_memory_Incident_log_event_message
Definition: log_event.cc:184
bool slave_execute_deferred_events(THD *thd)
The function is called by slave applier in case there are active table filtering rules to force gathe...
Definition: log_event.cc:6023
int append_query_string(const THD *thd, const CHARSET_INFO *csinfo, String const *from, String *to)
Append a version of the 'from' string suitable for use in a query to the 'to' string.
Definition: log_event.cc:796
int get_rpl_part_id(partition_info *part_info)
This method is used to extract the partition_id from a partitioned table.
Definition: log_event.cc:7741
unsigned int PSI_memory_key
Instrumented memory key.
Definition: psi_memory_bits.h:49
#define mysql_stage_set_work_completed(P1, P2)
Definition: mysql_stage.h:115
#define mysql_stage_get_work_estimated(P1)
Definition: mysql_stage.h:143
#define mysql_stage_set_work_estimated(P1, P2)
Definition: mysql_stage.h:140
static int flag
Definition: hp_test1.cc:40
int key_cmp2(KEY_PART_INFO *key_part, const uchar *key1, uint key1_length, const uchar *key2, uint key2_length)
Compare two given keys.
Definition: key.cc:504
#define free(A)
Definition: lexyy.cc:915
LOAD DATA INFILE is not written to the binary log like other statements.
static int native_strncasecmp(const char *s1, const char *s2, size_t n)
Definition: m_string.h:238
#define STRING_WITH_LEN(X)
Definition: m_string.h:315
char * strmake(char *dst, const char *src, size_t length)
Definition: strmake.cc:43
static bool bitmap_cmp(const MY_BITMAP *map1, const MY_BITMAP *map2)
Quite unlike other C comparison functions ending with 'cmp', e.g.
Definition: my_bitmap.h:108
Abstraction functions over zlib/intrinsics.
std::uint32_t ha_checksum
Definition: my_checksum.h:106
Header for compiler-dependent features.
#define SUPPRESS_UBSAN_CLANG10
Definition: my_compiler.h:140
#define DBUG_EXECUTE_IF(keyword, a1)
Definition: my_dbug.h:171
#define DBUG_PRINT(keyword, arglist)
Definition: my_dbug.h:181
#define DBUG_EVALUATE_IF(keyword, a1, a2)
Definition: my_dbug.h:179
#define DBUG_TRACE
Definition: my_dbug.h:146
Some integer typedefs for easier portability.
unsigned long long int ulonglong
Definition: my_inttypes.h:56
uint8_t uint8
Definition: my_inttypes.h:63
ulonglong my_off_t
Definition: my_inttypes.h:72
unsigned char uchar
Definition: my_inttypes.h:52
int64_t int64
Definition: my_inttypes.h:68
#define MYF(v)
Definition: my_inttypes.h:97
uint16_t uint16
Definition: my_inttypes.h:65
uint32_t uint32
Definition: my_inttypes.h:67
#define FN_REFLEN
Definition: my_io.h:83
void * my_malloc(PSI_memory_key key, size_t size, int flags)
Allocates size bytes of memory.
Definition: my_memory.cc:57
void my_free(void *ptr)
Frees the memory pointed by the ptr.
Definition: my_memory.cc:81
Defines various enable/disable and HAVE_ macros related to the performance schema instrumentation sys...
Functions related to handling of plugins and other dynamically loaded libraries.
#define MYSQL_PLUGIN_IMPORT
Definition: my_sharedlib.h:71
Common header for many mysys elements.
static my_thread_id thread_id
Definition: my_thr_init.cc:63
uint32 my_thread_id
Definition: my_thread_local.h:34
static char * query
Definition: myisam_ftdump.cc:45
Common definition between mysql server & client.
unsigned int net_length_size(unsigned long long num)
#define SERVER_VERSION_LENGTH
Definition: mysql_com.h:74
Instrumentation helpers for stages.
static void print_header(MYSQL_RES *result)
Definition: mysqladmin.cc:1297
static uint verbose
Definition: mysqlcheck.cc:65
static bool replace
Definition: mysqlimport.cc:66
static bool ignore
Definition: mysqlimport.cc:66
static const char * sql_mode
Definition: mysqlslap.cc:197
const char * delimiter
Definition: mysqlslap.cc:158
The namespace contains classes representing events that can occur in a replication stream.
enum_binlog_checksum_alg
Enumeration spcifying checksum algorithm used to encode a binary log event.
Definition: binlog_event.h:440
enum_load_dup_handling
Elements of this enum describe how LOAD DATA handles duplicates.
Definition: load_data_events.h:64
const uint64_t INVALID_XID
The following constant represents the maximum of MYSQL_XID domain.
Definition: statement_events.h:49
Log_event_type
Enumeration type for the different types of log events.
Definition: binlog_event.h:275
@ EXECUTE_LOAD_QUERY_EVENT
Definition: binlog_event.h:304
@ TABLE_MAP_EVENT
Definition: binlog_event.h:306
@ XA_PREPARE_LOG_EVENT
Definition: binlog_event.h:350
@ USER_VAR_EVENT
Definition: binlog_event.h:300
@ DELETE_ROWS_EVENT
Definition: binlog_event.h:338
@ FORMAT_DESCRIPTION_EVENT
Definition: binlog_event.h:301
@ PREVIOUS_GTIDS_LOG_EVENT
Definition: binlog_event.h:343
@ SLAVE_EVENT
Definition: binlog_event.h:294
@ UNKNOWN_EVENT
Every time you add a type, you have to.
Definition: binlog_event.h:283
@ RAND_EVENT
Definition: binlog_event.h:299
@ INCIDENT_EVENT
Something out of the ordinary happened on the master.
Definition: binlog_event.h:318
@ ROWS_QUERY_LOG_EVENT
Definition: binlog_event.h:333
@ GTID_LOG_EVENT
Definition: binlog_event.h:340
@ WRITE_ROWS_EVENT
Version 2 of the Row events.
Definition: binlog_event.h:336
@ ANONYMOUS_GTID_LOG_EVENT
Definition: binlog_event.h:341
@ ROTATE_EVENT
Definition: binlog_event.h:291
@ INTVAR_EVENT
Definition: binlog_event.h:292
@ UPDATE_ROWS_EVENT
Definition: binlog_event.h:337
@ STOP_EVENT
Definition: binlog_event.h:290
@ QUERY_EVENT
Definition: binlog_event.h:289
uint32_t checksum_crc32(uint32_t crc, const unsigned char *pos, size_t length)
Calculate a long checksum for a memoryblock.
Definition: binlog_event.h:475
Definition: buf0block_hint.cc:30
const std::string charset("charset")
const std::string FILE("FILE")
bool length(const dd::Spatial_reference_system *srs, const Geometry *g1, double *length, bool *null) noexcept
Computes the length of linestrings and multilinestrings.
Definition: length.cc:76
bool is_valid(const dd::Spatial_reference_system *srs, const Geometry *g, const char *func_name, bool *is_valid) noexcept
Decides if a geometry is valid.
Definition: is_valid.cc:95
static Value err()
Create a Value object that represents an error condition.
Definition: json_binary.cc:910
void print(trx_t *trx, dict_index_t *index, std::ostream &out, ref_t ref, bool fatal)
Print information about the given LOB.
Definition: lob0impl.cc:1331
HARNESS_EXPORT std::string string_format(const char *format,...)
Definition: utilities.cc:64
mutable_buffer buffer(void *p, size_t n) noexcept
Definition: buffer.h:420
Cursor end()
A past-the-end Cursor.
Definition: rules_table_service.cc:192
const char * db_name
Definition: rules_table_service.cc:55
std::set< Key, Compare, ut::allocator< Key > > set
Specialization of set which uses ut_allocator.
Definition: ut0new.h:2883
std::map< Key, Value, Compare, ut::allocator< std::pair< const Key, Value > > > map
Specialization of map which uses ut_allocator.
Definition: ut0new.h:2893
Performance schema instrumentation interface.
required string type
Definition: replication_group_member_actions.proto:34
Contains the classes representing events which are used for row based replication.
int rpl_sidno
Type of SIDNO (source ID number, first component of GTID)
Definition: rpl_gtid.h:96
const int MAX_GNO_TEXT_LENGTH
The length of MAX_GNO when printed in decimal.
Definition: rpl_gtid.h:271
binary_log::gtids::gno_t rpl_gno
GNO, the second (numeric) component of a GTID, is an alias of binary_log::gtids::gno_t.
Definition: rpl_gtid.h:103
enum_gtid_type
Enumeration of different types of values for Gtid_specification, i.e, the different internal states t...
Definition: rpl_gtid.h:3685
enum_row_image_type
Definition: rpl_record.h:40
ulonglong my_xid
Definition: handler.h:1228
File containing constants that can be used throughout the server.
Our own string classes, used pervasively throughout the executor.
Contains the classes representing statement events occurring in the replication stream.
Definition: m_ctype.h:385
This struct represents a specification of a GTID for a statement to be executed: either "AUTOMATIC",...
Definition: rpl_gtid.h:3799
enum_gtid_type type
The type of this GTID.
Definition: rpl_gtid.h:3801
Gtid gtid
The GTID: { SIDNO, GNO } if type == GTID; { 0, 0 } if type == AUTOMATIC or ANONYMOUS.
Definition: rpl_gtid.h:3807
rpl_gno gno
GNO of this Gtid.
Definition: rpl_gtid.h:1070
const char * str
Definition: mysql_lex_string.h:41
Definition: my_bitmap.h:43
Definition: log_event.h:510
const char * name[MAX_DBS_IN_EVENT_MTS]
Definition: log_event.h:511
int num
Definition: log_event.h:512
void reset_and_dispose()
Definition: log_event.h:516
Interface for an instrumented stage progress.
Definition: psi_stage_bits.h:63
LEX_CSTRING db
Definition: table.h:774
MY_BITMAP * read_set
The read set contains the set of columns that the execution engine needs to process the query.
Definition: table.h:1630
TABLE_SHARE * s
Definition: table.h:1400
MY_BITMAP * write_set
Definition: table.h:1632
This is a POD.
Definition: uuid.h:61
static const size_t TEXT_LENGTH
The number of bytes in the textual representation of a Uuid.
Definition: uuid.h:160
Legends running throughout the module:
Definition: rpl_rli_pdb.h:74
struct xid_t is binary compatible with the XID structure as in the X/Open CAE Specification,...
Definition: xa.h:83
Include file for Sun RPC to compile out of the box.
unsigned int uint
Definition: uca9-dump.cc:75
Item_result
Type of the user defined function return slot and arguments.
Definition: udf_registration_types.h:39
synode_no q[FIFO_SIZE]
Definition: xcom_base.cc:4059
static uint64_t cache_size
Definition: xcom_cache.cc:362