mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 15:15:34 +02:00
Merge
This commit is contained in:
commit
f09d789cb4
5 changed files with 103 additions and 36 deletions
|
|
@ -565,8 +565,15 @@ lock_rec_print(
|
|||
Prints info of locks for all transactions. */
|
||||
|
||||
void
|
||||
lock_print_info(
|
||||
/*============*/
|
||||
lock_print_info_summary(
|
||||
/*====================*/
|
||||
FILE* file); /* in: file where to print */
|
||||
/*************************************************************************
|
||||
Prints info of locks for each transaction. */
|
||||
|
||||
void
|
||||
lock_print_info_all_transactions(
|
||||
/*=============================*/
|
||||
FILE* file); /* in: file where to print */
|
||||
/*************************************************************************
|
||||
Validates the lock queue on a table. */
|
||||
|
|
|
|||
|
|
@ -466,9 +466,11 @@ Outputs to a file the output of the InnoDB Monitor. */
|
|||
void
|
||||
srv_printf_innodb_monitor(
|
||||
/*======================*/
|
||||
FILE* file); /* in: output stream */
|
||||
/************************************************************************
|
||||
Function to pass InnoDB status variables to MySQL */
|
||||
FILE* file, /* in: output stream */
|
||||
ulint* trx_start, /* out: file position of the start of
|
||||
the list of active transactions */
|
||||
ulint* trx_end); /* out: file position of the end of
|
||||
the list of active transactions */
|
||||
|
||||
void
|
||||
srv_export_innodb_status(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue