~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema_methods.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:
1168
1168
      ptr+= sprintf(ptr, " page_checksum=%s",
1169
1169
                    ha_choice_values[(uint32_t) share->page_checksum]);
1170
1170
    }
1171
 
    if (share->db_create_options & HA_OPTION_DELAY_KEY_WRITE)
1172
 
    {
1173
 
      ptr= strcpy(ptr," delay_key_write=1")+18;
1174
 
    }
1175
1171
    if (share->row_type != ROW_TYPE_DEFAULT)
1176
1172
    {
1177
1173
      ptr+= sprintf(ptr, " row_format=%s", ha_row_type[(uint32_t)share->row_type]);