~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • 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:
568
568
(TRX_SYS_PAGE_NO of TRX_SYS_SPACE) */
569
569
#define TRX_SYS_FILE_FORMAT_TAG         (UNIV_PAGE_SIZE - 16)
570
570
 
571
 
/** Contents of TRX_SYS_FILE_FORMAT_TAG when valid.  The file format
 
571
/** Contents of TRX_SYS_FILE_FORMAT_TAG when valid. The file format
572
572
identifier is added to this constant. */
573
573
#define TRX_SYS_FILE_FORMAT_TAG_MAGIC_N_LOW     3645922177UL
574
574
/** Contents of TRX_SYS_FILE_FORMAT_TAG+4 when valid */
575
575
#define TRX_SYS_FILE_FORMAT_TAG_MAGIC_N_HIGH    2745987765UL
 
576
/** Contents of TRX_SYS_FILE_FORMAT_TAG when valid. The file format
 
577
identifier is added to this 64-bit constant. */
 
578
#define TRX_SYS_FILE_FORMAT_TAG_MAGIC_N                                 \
 
579
        ((ib_uint64_t) TRX_SYS_FILE_FORMAT_TAG_MAGIC_N_HIGH << 32       \
 
580
         | TRX_SYS_FILE_FORMAT_TAG_MAGIC_N_LOW)
576
581
/* @} */
577
582
 
578
583
/** Doublewrite control struct */