diff options
author | Ian Gilfillan <github@greenman.co.za> | 2020-07-14 00:42:47 +0200 |
---|---|---|
committer | Anel <an3l@users.noreply.github.com> | 2020-07-22 23:18:12 +0200 |
commit | d2982331a62e22ff10fd7768f450303bc90d1caf (patch) | |
tree | e1f6f08983de4626d66e5b93e5c1f5399c3bff9c /sql/log_event.h | |
parent | 62d73df6b270cc94ba577e96d3bf325170f306fe (diff) | |
download | mariadb-git-d2982331a62e22ff10fd7768f450303bc90d1caf.tar.gz |
Code comment spellfixes
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 1337e9a7d69..bdac9f2e581 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -452,7 +452,7 @@ class String; /** @def LOG_EVENT_ARTIFICIAL_F - Artificial events are created arbitarily and not written to binary + Artificial events are created arbitrarily and not written to binary log These events should not update the master log position when slave @@ -854,13 +854,13 @@ private: }; /** - the struct aggregates two paramenters that identify an event + the struct aggregates two parameters that identify an event uniquely in scope of communication of a particular master and slave couple. I.e there can not be 2 events from the same staying connected master which have the same coordinates. @note Such identifier is not yet unique generally as the event originating master - is resetable. Also the crashed master can be replaced with some other. + is resettable. Also the crashed master can be replaced with some other. */ typedef struct event_coordinates { @@ -2594,7 +2594,7 @@ public: uint8 number_of_event_types; /* The list of post-headers' lengths followed - by the checksum alg decription byte + by the checksum alg description byte */ uint8 *post_header_len; struct master_version_split { @@ -2934,7 +2934,7 @@ public: */ bool is_deferred() { return deferred; } /* - In case of the deffered applying the variable instance is flagged + In case of the deferred applying the variable instance is flagged and the parsing time query id is stored to be used at applying time. */ void set_deferred(query_id_t qid) { deferred= true; query_id= qid; } @@ -3428,7 +3428,7 @@ public: bool write_data_header(); bool write_data_body(); /* - Cut out Create_file extentions and + Cut out Create_file extensions and write it as Load event - used on the slave */ bool write_base(); @@ -4738,7 +4738,7 @@ protected: /** @class Incident_log_event - Class representing an incident, an occurance out of the ordinary, + Class representing an incident, an occurence out of the ordinary, that happened on the master. The event is used to inform the slave that something out of the @@ -4782,7 +4782,7 @@ public: m_message.str= NULL; /* Just as a precaution */ m_message.length= 0; set_direct_logging(); - /* Replicate the incident irregardless of @@skip_replication. */ + /* Replicate the incident regardless of @@skip_replication. */ flags&= ~LOG_EVENT_SKIP_REPLICATION_F; DBUG_VOID_RETURN; } @@ -4803,7 +4803,7 @@ public: strmake(m_message.str, msg.str, msg.length); m_message.length= msg.length; set_direct_logging(); - /* Replicate the incident irregardless of @@skip_replication. */ + /* Replicate the incident regardless of @@skip_replication. */ flags&= ~LOG_EVENT_SKIP_REPLICATION_F; DBUG_VOID_RETURN; } |