~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
  
154
154
  if (table->s->tmp_table == NON_TRANSACTIONAL_TMP_TABLE &&
155
155
      !table->sort.addon_field)
156
 
    VOID(table->file->extra(HA_EXTRA_MMAP));
 
156
    table->file->extra(HA_EXTRA_MMAP);
157
157
  
158
158
  if (table->sort.addon_field)
159
159
  {
233
233
         !(table->s->db_options_in_use & HA_OPTION_PACK_RECORD) ||
234
234
         (use_record_cache < 0 &&
235
235
          !(table->file->ha_table_flags() & HA_NOT_DELETE_WITH_CACHE))))
236
 
      VOID(table->file->extra_opt(HA_EXTRA_CACHE,
237
 
                                  thd->variables.read_buff_size));
 
236
      table->file->extra_opt(HA_EXTRA_CACHE, thd->variables.read_buff_size);
238
237
  }
239
238
  /* 
240
239
    Do condition pushdown for UPDATE/DELETE.