~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.h

  • 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:
82
82
  int index_first(uchar * buf);
83
83
  int index_last(uchar * buf);
84
84
  int index_next_same(uchar *buf, const uchar *key, uint keylen);
85
 
  int ft_init()
86
 
  {
87
 
    if (!ft_handler)
88
 
      return 1;
89
 
    ft_handler->please->reinit_search(ft_handler);
90
 
    return 0;
91
 
  }
92
 
  FT_INFO *ft_init_ext(uint flags, uint inx,String *key)
93
 
  {
94
 
    return ft_init_search(flags,file,inx,
95
 
                          (uchar *)key->ptr(), key->length(), key->charset(),
96
 
                          table->record[0]);
97
 
  }
98
 
  int ft_read(uchar *buf);
99
85
  int rnd_init(bool scan);
100
86
  int rnd_next(uchar *buf);
101
87
  int rnd_pos(uchar * buf, uchar *pos);