~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_proto_write.cc

  • Committer: Brian Aker
  • Date: 2009-08-17 01:44:23 UTC
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090817014423-jxi2qonsumm8mndf
Remove SQL level reference for DELAY (just now done correctly by default in
engine).

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
    table_options->set_page_checksum(true);
311
311
 
312
312
 
313
 
  if (create_info->used_fields & HA_CREATE_USED_DELAY_KEY_WRITE)
314
 
  {
315
 
    if(create_info->table_options & HA_OPTION_DELAY_KEY_WRITE)
316
 
      table_options->set_delay_key_write(true);
317
 
    else if(create_info->table_options & HA_OPTION_NO_DELAY_KEY_WRITE)
318
 
      table_options->set_delay_key_write(false);
319
 
  }
320
 
  else if(create_info->table_options & HA_OPTION_DELAY_KEY_WRITE)
321
 
    table_options->set_delay_key_write(true);
322
 
 
323
 
 
324
313
  switch(create_info->row_type)
325
314
  {
326
315
  case ROW_TYPE_DEFAULT: