Commit 8bfec4b2 authored by unknown's avatar unknown

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.


sql/ha_innodb.cc:
  Applied innodb-5.0-ss2223 snapshot
  
  Revision r2223:
  branches/5.0: 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 84762ce2
......@@ -6339,7 +6339,9 @@ void
innodb_export_status(void)
/*======================*/
{
srv_export_innodb_status();
if (innodb_inited) {
srv_export_innodb_status();
}
}
/****************************************************************************
......
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