~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Brian Aker
  • Date: 2009-12-01 00:32:58 UTC
  • mto: (1234.1.3 push)
  • mto: This revision was merged to the branch mainline in revision 1235.
  • Revision ID: brian@gaz-20091201003258-072j43fxdq5ugpv9
Final removal table_flag().

Show diffs side-by-side

added added

removed removed

Lines of Context:
229
229
    if (!table->no_cache &&
230
230
        (use_record_cache > 0 ||
231
231
        (int) table->reginfo.lock_type <= (int) TL_READ_WITH_SHARED_LOCKS ||
232
 
        !(table->s->db_options_in_use & HA_OPTION_PACK_RECORD) ||
233
 
        (use_record_cache < 0 &&
234
 
          !(table->cursor->ha_table_flags() & HA_NOT_DELETE_WITH_CACHE))))
 
232
        !(table->s->db_options_in_use & HA_OPTION_PACK_RECORD)))
235
233
      table->cursor->extra_opt(HA_EXTRA_CACHE, session->variables.read_buff_size);
236
234
  }
237
235