Commit 9c026273 authored by Anel Husakovic's avatar Anel Husakovic

Add implementation in .h and delete unneccessery printing

parent db55b39f
......@@ -9039,17 +9039,6 @@ ha_innobase::ft_read(
return(HA_ERR_END_OF_FILE);
}
/*************************************************************************
*/
void
ha_innobase::ft_end()
{
fprintf(stderr, "ft_end()\n");
rnd_end();
}
/*********************************************************************//**
Stores a reference to the current row to 'ref' field of the handle. Note
that in the case where we have generated the clustered index for the
......
......@@ -153,7 +153,7 @@ class ha_innobase: public handler
int rnd_pos(uchar * buf, uchar *pos);
int ft_init();
void ft_end();
void ft_end() { rnd_end(); }
FT_INFO *ft_init_ext(uint flags, uint inx, String* key);
int ft_read(uchar* buf);
......
......@@ -9810,17 +9810,6 @@ ha_innobase::ft_read(
return(HA_ERR_END_OF_FILE);
}
/*************************************************************************
*/
void
ha_innobase::ft_end()
{
fprintf(stderr, "ft_end()\n");
rnd_end();
}
/*********************************************************************//**
Stores a reference to the current row to 'ref' field of the handle. Note
that in the case where we have generated the clustered index for the
......
......@@ -156,7 +156,7 @@ class ha_innobase: public handler
int rnd_pos(uchar * buf, uchar *pos);
int ft_init();
void ft_end();
void ft_end() { rnd_end(); }
FT_INFO *ft_init_ext(uint flags, uint inx, String* key);
int ft_read(uchar* buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment