~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_check.c

  • Committer: Brian Aker
  • Date: 2008-07-06 06:21:04 UTC
  • Revision ID: brian@tangent.org-20080706062104-94iqawllrm0n9uxo
More removal of FT from MyISAM

Show diffs side-by-side

added added

removed removed

Lines of Context:
1916
1916
  /* cannot sort index files with R-tree indexes */
1917
1917
  for (key= 0,keyinfo= &share->keyinfo[0]; key < share->base.keys ;
1918
1918
       key++,keyinfo++)
1919
 
    if (keyinfo->key_alg == HA_KEY_ALG_RTREE)
1920
 
      DBUG_RETURN(0);
1921
1919
 
1922
1920
  if (!(param->testflag & T_SILENT))
1923
1921
    printf("- Sorting index for MyISAM-table '%s'\n",name);
2011
2009
  char llbuff[22];
2012
2010
  DBUG_ENTER("sort_one_index");
2013
2011
 
2014
 
  /* cannot walk over R-tree indices */
2015
 
  DBUG_ASSERT(keyinfo->key_alg != HA_KEY_ALG_RTREE);
2016
2012
  new_page_pos=param->new_file_pos;
2017
2013
  param->new_file_pos+=keyinfo->block_length;
2018
2014