Commit fa257c03 authored by tsmith@ramayana.hindu.god's avatar tsmith@ramayana.hindu.god
Browse files

Applied innodb-5.0-ss2223 snapshot

Fixes:

Bug #32083: server crashes on show status when InnoDB is not initialized
  innodb_export_status(): Check that InnoDB has been initialized
  before invoking srv_export_innodb_status().  (Bug #32083)
  This bug does not exist in MySQL/InnoDB 5.1.
parent f8ade5e9
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -6339,8 +6339,10 @@ void
innodb_export_status(void)
/*======================*/
{
	if (innodb_inited) {
		srv_export_innodb_status();
	}
}

/****************************************************************************
Implements the SHOW INNODB STATUS command. Sends the output of the InnoDB