Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/mariadb_rpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ enum opt_metadata_field_type
/* ?? */
#define LOG_EVENT_MTS_ISOLATE_F 0x0200

/* if session variable @@skip_repliation was set, this flag will be
/* if session variable @@skip_replication was set, this flag will be
reported for events which should be skipped. */
#define LOG_EVENT_SKIP_REPLICATION_F 0x8000

Expand Down
2 changes: 1 addition & 1 deletion libmariadb/ma_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ my_bool ma_init_done=0;



/* Init ma_sys functions and ma_sys variabels */
/* Init ma_sys functions and ma_sys variables */

void ma_init(void)
{
Expand Down
2 changes: 1 addition & 1 deletion libmariadb/secure/schannel_certs.c
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ static SECURITY_STATUS create_client_certificate_mem(
CERT_QUERY_FORMAT_FLAG_ALL, 0, NULL, &actual_content_type,
NULL, NULL, NULL, (const void**)&cert_handle->cert))
{
FAIL("Can't parse client certficate");
FAIL("Can't parse client certificate");
}

/* Parse key */
Expand Down
2 changes: 1 addition & 1 deletion unittest/libmariadb/ps_bugs.c
Original file line number Diff line number Diff line change
Expand Up @@ -3545,7 +3545,7 @@ static int test_explain_bug(MYSQL *mysql)

if ( mysql_get_server_version(mysql) >= 50027 )
{
/* The patch for bug#23037 changes column type of DEAULT to blob */
/* The patch for bug#23037 changes column type of DEFAULT to blob */
if (verify_prepare_field(result, 4, "Default", "COLUMN_DEFAULT",
MYSQL_TYPE_BLOB, 0, 0,
mysql_get_server_version(mysql) <= 50400 ? "" : "information_schema",
Expand Down
Loading