~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/row/row0uins.c

  • 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:
88
88
                                            &mtr);
89
89
        ut_a(success);
90
90
 
91
 
        if (ut_dulint_cmp(node->table->id, DICT_INDEXES_ID) == 0) {
 
91
        if (node->table->id == DICT_INDEXES_ID) {
92
92
                ut_ad(node->trx->dict_operation_lock_mode == RW_X_LATCH);
93
93
 
94
94
                /* Drop the index tree associated with the row in
270
270
        dict_index_t*   clust_index;
271
271
        byte*           ptr;
272
272
        undo_no_t       undo_no;
273
 
        dulint          table_id;
 
273
        table_id_t      table_id;
274
274
        ulint           type;
275
275
        ulint           dummy;
276
276
        ibool           dummy_extern;