~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/buf/buf0lru.c

  • Committer: Brian Aker
  • Date: 2010-12-02 01:39:53 UTC
  • mto: This revision was merged to the branch mainline in revision 1968.
  • Revision ID: brian@tangent.org-20101202013953-9ie7kafjag0e051q
Style cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2279
2279
                case BUF_BLOCK_FILE_PAGE:
2280
2280
                        frame = buf_block_get_frame((buf_block_t*) bpage);
2281
2281
                        fprintf(stderr, "\ntype %lu"
2282
 
                                " index id %llu\n",
 
2282
                                " index id %lu\n",
2283
2283
                                (ulong) fil_page_get_type(frame),
2284
 
                                (ullint) btr_page_get_index_id(frame));
 
2284
                                (ulong) ut_dulint_get_low(
 
2285
                                        btr_page_get_index_id(frame)));
2285
2286
                        break;
2286
2287
                case BUF_BLOCK_ZIP_PAGE:
2287
2288
                        frame = bpage->zip.data;
2288
2289
                        fprintf(stderr, "\ntype %lu size %lu"
2289
 
                                " index id %llu\n",
 
2290
                                " index id %lu\n",
2290
2291
                                (ulong) fil_page_get_type(frame),
2291
2292
                                (ulong) buf_page_get_zip_size(bpage),
2292
 
                                (ullint) btr_page_get_index_id(frame));
 
2293
                                (ulong) ut_dulint_get_low(
 
2294
                                        btr_page_get_index_id(frame)));
2293
2295
                        break;
2294
2296
 
2295
2297
                default: