~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä, Stewart Smith
  • Date: 2010-11-17 05:41:53 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1971.
  • Revision ID: stewart@flamingspork.com-20101117054153-ap3mtdgmdki1tan5
Merge Revision revid:marko.makela@oracle.com-20100623110659-pk5bqnmo0j7hj6md from MySQL InnoDB

Original revid:marko.makela@oracle.com-20100623110659-pk5bqnmo0j7hj6md

Original Authors: Marko Mkel <marko.makela@oracle.com>
Original commit message:
Bug#54728: Replace the dulint struct with a 64-bit integer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
 
79
79
        ptr = undo_rec + 3;
80
80
 
81
 
        return(mach_dulint_read_much_compressed(ptr));
 
81
        return(mach_ull_read_much_compressed(ptr));
82
82
}
83
83
 
84
84
/**********************************************************************//**
90
90
/*====================*/
91
91
        undo_no_t       undo_no)        /*!< in: undo no read from node */
92
92
{
93
 
        return (3 + mach_dulint_get_much_compressed_size(undo_no));
 
93
        return (3 + mach_ull_get_much_compressed_size(undo_no));
94
94
}
95
95
 
96
96
/***********************************************************************//**