~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.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:
311
311
      db_create_options|= HA_OPTION_NO_CHECKSUM;
312
312
  }
313
313
 
314
 
  if (table_options.has_delay_key_write())
315
 
  {
316
 
    if (table_options.delay_key_write())
317
 
      db_create_options|= HA_OPTION_DELAY_KEY_WRITE;
318
 
    else
319
 
      db_create_options|= HA_OPTION_NO_DELAY_KEY_WRITE;
320
 
  }
321
 
 
322
314
  /* db_create_options was stored as 2 bytes in FRM
323
315
     Any HA_OPTION_ that doesn't fit into 2 bytes was silently truncated away.
324
316
   */