~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • 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:
1831
1831
}
1832
1832
 
1833
1833
 
1834
 
int ha_myisam::ft_read(uchar *buf)
1835
 
{
1836
 
  int error;
1837
 
 
1838
 
  if (!ft_handler)
1839
 
    return -1;
1840
 
 
1841
 
  thread_safe_increment(table->in_use->status_var.ha_read_next_count,
1842
 
                        &LOCK_status); // why ?
1843
 
 
1844
 
  error=ft_handler->please->read_next(ft_handler,(char*) buf);
1845
 
 
1846
 
  table->status=error ? STATUS_NOT_FOUND: 0;
1847
 
  return error;
1848
 
}
1849
 
 
1850
1834
uint ha_myisam::checksum() const
1851
1835
{
1852
1836
  return (uint)file->state->checksum;