trx0trx.ic
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /******************************************************
  2. The transaction
  3. (c) 1996 Innobase Oy
  4. Created 3/26/1996 Heikki Tuuri
  5. *******************************************************/
  6. /*****************************************************************
  7. Starts the transaction if it is not yet started. */
  8. UNIV_INLINE
  9. void
  10. trx_start_if_not_started(
  11. /*=====================*/
  12. trx_t* trx) /* in: transaction */
  13. {
  14. ut_ad(trx->conc_state != TRX_COMMITTED_IN_MEMORY);
  15. if (trx->conc_state == TRX_NOT_STARTED) {
  16. trx_start(trx, ULINT_UNDEFINED);
  17. }
  18. }