~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-12-09 06:02:39 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20101209060239-t0ujftvcvd558yno
Tags: upstream-2010.12.05
ImportĀ upstreamĀ versionĀ 2010.12.05

Show diffs side-by-side

added added

removed removed

Lines of Context:
518
518
        ulint           n_fields,/*!< in: number of complete fields to fold */
519
519
        ulint           n_bytes,/*!< in: number of bytes to fold in an
520
520
                                incomplete last field */
521
 
        dulint          tree_id)/*!< in: index tree id */
 
521
        index_id_t      tree_id)/*!< in: index tree id */
522
522
{
523
523
        const dfield_t* field;
524
524
        ulint           i;
530
530
        ut_ad(tuple->magic_n == DATA_TUPLE_MAGIC_N);
531
531
        ut_ad(dtuple_check_typed(tuple));
532
532
 
533
 
        fold = ut_fold_dulint(tree_id);
 
533
        fold = ut_fold_ull(tree_id);
534
534
 
535
535
        for (i = 0; i < n_fields; i++) {
536
536
                field = dtuple_get_nth_field(tuple, i);