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("Support MariaDB developers by giving a star at "
+ "https://github.com/MariaDB/server",
+ INFO_INFO);
}
#ifdef HAVE_READLINE
my_sleep_for_space= mariadb_sleep_for_space;
/*
- Print source revision hash, as one of the first lines, if not the
- first in error log, for troubleshooting and debugging purposes
+ Print source revision hash, if set, for troubleshooting and debugging
+ purposes. If not, suggest database adming to help project by giving a
+ star on GitHub.
*/
- if (!opt_help)
- sql_print_information("Starting MariaDB %s source revision %s as process %lu",
- server_version, SOURCE_REVISION, (ulong) getpid());
+ if (!opt_help) {
+ if (SOURCE_REVISION) {
+ sql_print_information("Starting MariaDB %s source revision %s as process %lu",
+ server_version, SOURCE_REVISION, (ulong) getpid());
+ } else {
+ sql_print_information("Starting MariaDB %s as process %lu",
+ server_version, (ulong) getpid());
+ sql_print_information("Support MariaDB developers by giving a star at "
+ "https://github.com/MariaDB/server");
+ }
+ }
#ifdef WITH_PERFSCHEMA_STORAGE_ENGINE
/*