@@ -3059,7 +3059,7 @@ bool MYSQL_BIN_LOG::open(const char *log_name,
3059
3059
if (init_and_set_log_file_name (log_name, new_name, log_type_arg,
3060
3060
io_cache_type_arg))
3061
3061
{
3062
- sql_print_error (" MSYQL_BIN_LOG ::open failed to generate new file name." );
3062
+ sql_print_error (" MYSQL_BIN_LOG ::open failed to generate new file name." );
3063
3063
DBUG_RETURN (1 );
3064
3064
}
3065
3065
@@ -3086,7 +3086,7 @@ bool MYSQL_BIN_LOG::open(const char *log_name,
3086
3086
}
3087
3087
});
3088
3088
3089
- sql_print_error (" MSYQL_BIN_LOG ::open failed to sync the index file." );
3089
+ sql_print_error (" MYSQL_BIN_LOG ::open failed to sync the index file." );
3090
3090
DBUG_RETURN (1 );
3091
3091
}
3092
3092
DBUG_EXECUTE_IF (" crash_create_non_critical_before_update_index" , DBUG_SUICIDE (););
@@ -3849,14 +3849,14 @@ int MYSQL_BIN_LOG::purge_logs(const char *to_log,
3849
3849
3850
3850
if ((error= sync_purge_index_file ()))
3851
3851
{
3852
- sql_print_error (" MSYQL_BIN_LOG ::purge_logs failed to flush register file." );
3852
+ sql_print_error (" MYSQL_BIN_LOG ::purge_logs failed to flush register file." );
3853
3853
goto err;
3854
3854
}
3855
3855
3856
3856
/* We know how many files to delete. Update index file. */
3857
3857
if ((error=update_log_index (&log_info, need_update_threads)))
3858
3858
{
3859
- sql_print_error (" MSYQL_BIN_LOG ::purge_logs failed to update the index file" );
3859
+ sql_print_error (" MYSQL_BIN_LOG ::purge_logs failed to update the index file" );
3860
3860
goto err;
3861
3861
}
3862
3862
@@ -3866,7 +3866,7 @@ int MYSQL_BIN_LOG::purge_logs(const char *to_log,
3866
3866
/* Read each entry from purge_index_file and delete the file. */
3867
3867
if (is_inited_purge_index_file () &&
3868
3868
(error= purge_index_entry (thd, reclaimed_space, FALSE )))
3869
- sql_print_error (" MSYQL_BIN_LOG ::purge_logs failed to process registered files"
3869
+ sql_print_error (" MYSQL_BIN_LOG ::purge_logs failed to process registered files"
3870
3870
" that would be purged." );
3871
3871
close_purge_index_file ();
3872
3872
@@ -3983,7 +3983,7 @@ int MYSQL_BIN_LOG::purge_index_entry(THD *thd, ulonglong *reclaimed_space,
3983
3983
3984
3984
if ((error=reinit_io_cache (&purge_index_file, READ_CACHE, 0 , 0 , 0 )))
3985
3985
{
3986
- sql_print_error (" MSYQL_BIN_LOG ::purge_index_entry failed to reinit register file "
3986
+ sql_print_error (" MYSQL_BIN_LOG ::purge_index_entry failed to reinit register file "
3987
3987
" for read" );
3988
3988
goto err;
3989
3989
}
@@ -3998,7 +3998,7 @@ int MYSQL_BIN_LOG::purge_index_entry(THD *thd, ulonglong *reclaimed_space,
3998
3998
if (purge_index_file.error )
3999
3999
{
4000
4000
error= purge_index_file.error ;
4001
- sql_print_error (" MSYQL_BIN_LOG ::purge_index_entry error %d reading from "
4001
+ sql_print_error (" MYSQL_BIN_LOG ::purge_index_entry error %d reading from "
4002
4002
" register file." , error);
4003
4003
goto err;
4004
4004
}
0 commit comments