mirror of
https://github.com/MariaDB/server.git
synced 2025-12-13 20:03:16 +03:00
branches/zip:
Add InnoDB version in these places: * In INFORMATION_SCHEMA.PLUGINS.PLUGIN_VERSION, only 1.2 out of 1.2.3 because MySQL supports only one dot there * At startup: "080501 12:28:06 InnoDB Plugin 1.0.1 started; log sequence number 46509" * In a server variable innodb_version; mysql> select @@innodb_version; +------------------+ | @@innodb_version | +------------------+ | 1.0.1 | +------------------+ Approved by: Sunny
This commit is contained in:
@@ -1662,8 +1662,9 @@ innobase_start_or_create_for_mysql(void)
|
||||
if (srv_print_verbose_log) {
|
||||
ut_print_timestamp(stderr);
|
||||
fprintf(stderr,
|
||||
" InnoDB: Started; log sequence number %llu\n",
|
||||
srv_start_lsn);
|
||||
" InnoDB Plugin %s started; "
|
||||
"log sequence number %llu\n",
|
||||
INNODB_VERSION_STR, srv_start_lsn);
|
||||
}
|
||||
|
||||
if (srv_force_recovery > 0) {
|
||||
|
||||
Reference in New Issue
Block a user