~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_create.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:
77
77
      options=ci->old_options &
78
78
        (HA_OPTION_COMPRESS_RECORD | HA_OPTION_PACK_RECORD |
79
79
         HA_OPTION_READ_ONLY_DATA | HA_OPTION_CHECKSUM |
80
 
         HA_OPTION_TMP_TABLE | HA_OPTION_DELAY_KEY_WRITE);
 
80
         HA_OPTION_TMP_TABLE );
81
81
    else
82
82
      options=ci->old_options &
83
 
        (HA_OPTION_CHECKSUM | HA_OPTION_TMP_TABLE | HA_OPTION_DELAY_KEY_WRITE);
 
83
        (HA_OPTION_CHECKSUM | HA_OPTION_TMP_TABLE );
84
84
  }
85
85
 
86
86
  if (ci->reloc_rows > ci->max_rows)
180
180
    options|= HA_OPTION_CHECKSUM;
181
181
    min_pack_length++;
182
182
  }
183
 
  if (flags & HA_CREATE_DELAY_KEY_WRITE)
184
 
    options|= HA_OPTION_DELAY_KEY_WRITE;
185
183
  if (flags & HA_CREATE_RELIES_ON_SQL_LAYER)
186
184
    options|= HA_OPTION_RELIES_ON_SQL_LAYER;
187
185