~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/trx0trx.ic

  • Committer: Lee Bieber
  • Date: 2010-12-03 01:16:19 UTC
  • mfrom: (1819.9.81 update-innobase)
  • Revision ID: kalebral@gmail.com-20101203011619-n6v584rijwdet05b
Merge Stewart - update Innobase plugin based on InnoDB 1.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
}
70
70
 
71
71
/*******************************************************************//**
72
 
Retrieves transacion's id, represented as unsigned long long.
73
 
@return transaction's id */
74
 
UNIV_INLINE
75
 
ullint
76
 
trx_get_id(
77
 
/*=======*/
78
 
        const trx_t*    trx)    /*!< in: transaction */
79
 
{
80
 
        return((ullint)ut_conv_dulint_to_longlong(trx->id));
81
 
}
82
 
 
83
 
/*******************************************************************//**
84
72
Retrieves transaction's que state in a human readable string. The string
85
73
should not be free()'d or modified.
86
74
@return string in the data segment */