Add implementation in .h and delete unneccessery printing

This commit is contained in:
Anel Husakovic 2018-11-06 10:58:02 +00:00
parent db55b39fb2
commit 9c026273a9
4 changed files with 2 additions and 24 deletions

View File

@ -9039,17 +9039,6 @@ next_record:
return(HA_ERR_END_OF_FILE); 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 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 that in the case where we have generated the clustered index for the

View File

@ -153,7 +153,7 @@ class ha_innobase: public handler
int rnd_pos(uchar * buf, uchar *pos); int rnd_pos(uchar * buf, uchar *pos);
int ft_init(); int ft_init();
void ft_end(); void ft_end() { rnd_end(); }
FT_INFO *ft_init_ext(uint flags, uint inx, String* key); FT_INFO *ft_init_ext(uint flags, uint inx, String* key);
int ft_read(uchar* buf); int ft_read(uchar* buf);

View File

@ -9810,17 +9810,6 @@ next_record:
return(HA_ERR_END_OF_FILE); 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 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 that in the case where we have generated the clustered index for the

View File

@ -156,7 +156,7 @@ class ha_innobase: public handler
int rnd_pos(uchar * buf, uchar *pos); int rnd_pos(uchar * buf, uchar *pos);
int ft_init(); int ft_init();
void ft_end(); void ft_end() { rnd_end(); }
FT_INFO *ft_init_ext(uint flags, uint inx, String* key); FT_INFO *ft_init_ext(uint flags, uint inx, String* key);
int ft_read(uchar* buf); int ft_read(uchar* buf);