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: 2 additions & 0 deletions client/mysql.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,8 @@ int main(int argc,char *argv[])
mysql_thread_id(&mysql), server_version_string(&mysql));
put_info((char*) glob_buffer.ptr(),INFO_INFO);
put_info(ORACLE_WELCOME_COPYRIGHT_NOTICE("2000"), INFO_INFO);
put_info("Please help get to 10k stars at https://github.com/MariaDB/Server",
INFO_INFO);
}

#ifdef HAVE_READLINE
Expand Down
2 changes: 2 additions & 0 deletions mysql-test/main/mysql-interactive.result
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Your MariaDB connection id is X
Server version: Y
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Please help get to 10k stars at https://github.com/MariaDB/Server
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> delimiter $
Expand Down Expand Up @@ -40,6 +41,7 @@ Your MariaDB connection id is X
Server version: Y
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Please help get to 10k stars at https://github.com/MariaDB/Server
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database db1;
Expand Down
6 changes: 5 additions & 1 deletion sql/mysqld.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5047,11 +5047,15 @@ static int init_server_components()
Print source revision hash, as one of the first lines, if not the
first in error log, for troubleshooting and debugging purposes
*/
if (!opt_help)
if (!opt_help) {
sql_print_information("Starting MariaDB %s source revision %s "
"server_uid %s as process %lu",
server_version, SOURCE_REVISION, server_uid,
(ulong) getpid());
sql_print_information("Please help get to 10k stars at "
"https://github.com/MariaDB/server");
}


#ifdef WITH_PERFSCHEMA_STORAGE_ENGINE
/*
Expand Down