~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2009-05-26 02:54:31 UTC
  • mfrom: (1022.2.34 mordred)
  • Revision ID: brian@gaz-20090526025431-hpjmsrr4j6nftuic
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
3006
3006
      if (!(bitmaps= (unsigned char*) alloc_root(session->mem_root, bitmap_size)))
3007
3007
        return(0);
3008
3008
      bitmap_init(&show_table->def_read_set,
3009
 
                  (my_bitmap_map*) bitmaps, show_table_share->fields, false);
 
3009
                  (my_bitmap_map*) bitmaps, show_table_share->fields);
3010
3010
      bitmap_set_all(&show_table->def_read_set);
3011
3011
      show_table->read_set= &show_table->def_read_set;
3012
3012
    }
3781
3781
    return(0);
3782
3782
  my_bitmap_map* bitmaps=
3783
3783
    (my_bitmap_map*) session->alloc(bitmap_buffer_size(field_count));
3784
 
  bitmap_init(&table->def_read_set, (my_bitmap_map*) bitmaps, field_count,
3785
 
              false);
 
3784
  bitmap_init(&table->def_read_set, (my_bitmap_map*) bitmaps, field_count);
3786
3785
  table->read_set= &table->def_read_set;
3787
3786
  bitmap_clear_all(table->read_set);
3788
3787
  table_list->schema_table_param= tmp_table_param;