summaryrefslogtreecommitdiff
path: root/sql/log_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/log_event.h')
-rw-r--r--sql/log_event.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/sql/log_event.h b/sql/log_event.h
index b515036c5e8..5e110dbd3fd 100644
--- a/sql/log_event.h
+++ b/sql/log_event.h
@@ -461,7 +461,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
@@ -975,13 +975,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
{
@@ -2798,7 +2798,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;
class master_version_split: public Version {
@@ -3324,7 +3324,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; }
@@ -5520,7 +5520,7 @@ private:
/**
@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
@@ -5564,7 +5564,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;
}
@@ -5586,7 +5586,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;
}