~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee Bieber
  • Date: 2010-11-14 05:18:07 UTC
  • mfrom: (1921.4.12 catalogs)
  • Revision ID: kalebral@gmail.com-20101114051807-p69h40jbsn1byf84
Merge Brian - add execute with no return

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
/*******************************************************************//**
72
84
Retrieves transaction's que state in a human readable string. The string
73
85
should not be free()'d or modified.
74
86
@return string in the data segment */