MySQL 5.6.14 Source Code Document
|
#include <fts0types.h>
Public Attributes | |
fts_string_t | text |
ibool | found |
ib_rbt_t * | tokens |
ib_alloc_t * | self_heap |
CHARSET_INFO * | charset |
This type represents a single document.
Definition at line 251 of file fts0types.h.
CHARSET_INFO* fts_doc_t::charset |
Document's charset info
Definition at line 267 of file fts0types.h.
ibool fts_doc_t::found |
TRUE if the document was found successfully in the database
Definition at line 254 of file fts0types.h.
ib_alloc_t* fts_doc_t::self_heap |
An instance of this type is allocated from this heap along with any objects that have the same lifespan, most notably the vector of token positions
Definition at line 262 of file fts0types.h.
fts_string_t fts_doc_t::text |
document text
Definition at line 252 of file fts0types.h.
ib_rbt_t* fts_doc_t::tokens |
This is filled when the document is tokenized. Tokens; indexed by fts_string_t*, cells are of type fts_token_t*
Definition at line 257 of file fts0types.h.