~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_write.c

  • Committer: Brian Aker
  • Date: 2008-07-06 08:22:57 UTC
  • mto: This revision was merged to the branch mainline in revision 78.
  • Revision ID: brian@tangent.org-20080706082257-gni9cj1cdjlqomz0
Final removal of fulltext core from myisam.

Show diffs side-by-side

added added

removed removed

Lines of Context:
256
256
 
257
257
  error=_mi_ck_real_write_btree(info, keyinfo, key, key_length,
258
258
                                root, comp_flag);
259
 
  if (info->ft1_to_ft2)
260
 
  {
261
 
    if (!error)
262
 
      error= _mi_ft_convert_to_ft2(info, keynr, key);
263
 
    delete_dynamic(info->ft1_to_ft2);
264
 
    my_free((uchar*)info->ft1_to_ft2, MYF(0));
265
 
    info->ft1_to_ft2=0;
266
 
  }
267
259
  DBUG_RETURN(error);
268
260
} /* _mi_ck_write_btree */
269
261