~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
        trx_t*  trx,    /*!< in: transaction struct */
73
73
        FILE*   file);  /*!< in: file to read message from */
74
74
/****************************************************************//**
 
75
Checks if the commit id should be logged to the sys header file
 
76
@return TRUE if the commit id should be logged */ 
 
77
UNIV_INLINE
 
78
ibool
 
79
trx_log_commit_id(
 
80
/*==============*/
 
81
        const trx_t*    trx);   /*!< in: trx object */
 
82
/****************************************************************//**
75
83
Retrieves the error_info field from a trx.
76
84
@return the error info */
77
85
UNIV_INLINE
708
716
        char detailed_error[256];       /*!< detailed error message for last
709
717
                                        error, or empty. */
710
718
 
 
719
        ibool           log_commit_id;  /*!< log the commit id to the sys
 
720
                                        file */
711
721
        inline drizzled::Session *session()
712
722
        {
713
723
          return mysql_thd;