Commit 239543f7 authored by unknown's avatar unknown

Include a timestamp on the 'ready for connections' message by printing it

using sql_print_information() instead of directly to stdout. (Bug #8444)


sql/mysqld.cc:
  Consolidate the "ready for connection" message into a single message,
  including the MYSQL_COMPILATION_COMMENT.
sql/share/errmsg.txt:
  Include compilation comment in ER_READY
parent 7d4ea5cf
......@@ -3113,13 +3113,11 @@ we force server id to 2, but this MySQL server will not act as a slave.");
create_shutdown_thread();
create_maintenance_thread();
printf(ER(ER_READY),my_progname,server_version,
((unix_sock == INVALID_SOCKET) ? (char*) "" : mysqld_unix_port),
mysqld_port);
if (MYSQL_COMPILATION_COMMENT[0] != '\0')
fputs(" " MYSQL_COMPILATION_COMMENT, stdout);
putchar('\n');
fflush(stdout);
sql_print_information(ER(ER_READY),my_progname,server_version,
((unix_sock == INVALID_SOCKET) ? (char*) ""
: mysqld_unix_port),
mysqld_port,
MYSQL_COMPILATION_COMMENT);
#if defined(__NT__) || defined(HAVE_SMEM)
handle_connections_methods();
......
......@@ -1824,7 +1824,7 @@ ER_READY
cze "%s: p-Bipraven na spojen"
dan "%s: klar til tilslutninger"
nla "%s: klaar voor verbindingen"
eng "%s: ready for connections.\nVersion: '%s' socket: '%s' port: %d"
eng "%s: ready for connections.\nVersion: '%s' socket: '%s' port: %d %s"
jps "%s: ",
est "%s: ootab hendusi"
fre "%s: Prt pour des connections"
......@@ -1839,7 +1839,7 @@ ER_READY
pol "%s: gotowe do po?czenia"
por "%s: Pronto para conexes"
rum "%s: sint gata pentru conectii"
rus "%s: .\n: '%s' : '%s' : %d"
rus "%s: .\n: '%s' : '%s' : %d %s"
serbian "%s: Spreman za konekcije\n"
slo "%s: pripraven na spojenie"
spa "%s: preparado para conexiones"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment