📄 trx0purge.ic
字号:
/******************************************************Purge old versions(c) 1996 Innobase OyCreated 3/26/1996 Heikki Tuuri*******************************************************/#include "trx0undo.h"/************************************************************************Calculates the file address of an undo log header when we have the fileaddress of its history list node. */UNIV_INLINEfil_addr_ttrx_purge_get_log_from_hist(/*========================*/ /* out: file address of the log */ fil_addr_t node_addr) /* in: file address of the history list node of the log */{ node_addr.boffset -= TRX_UNDO_HISTORY_NODE; return(node_addr);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -