Skip to content
Closed
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 sql/mysqld.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2735,7 +2735,7 @@ int init_common_variables()
/* TODO: remove this when my_time_t is 64 bit compatible */
if (!IS_TIME_T_VALID_FOR_TIMESTAMP(server_start_time))
{
sql_print_error("This MySQL server doesn't support dates later then 2038");
sql_print_error("This MySQL server doesn't support dates later than 2038");
return 1;
}

Expand Down
2 changes: 1 addition & 1 deletion sql/sql_parse.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1250,7 +1250,7 @@ bool dispatch_command(THD *thd, const COM_DATA *com_data,

TODO: remove this when we have full 64 bit my_time_t support
*/
sql_print_error("This MySQL server doesn't support dates later then 2038");
sql_print_error("This MySQL server doesn't support dates later than 2038");
ulong master_access= thd->security_context()->master_access();
thd->security_context()->set_master_access(master_access | SHUTDOWN_ACL);
command= COM_SHUTDOWN;
Expand Down