For a many create+drop of DBs the ordinalSU will increase. This, in
turn will lead to a bigger resulting indexing term beyond length
IT_MAX_WORD - for the compressed temp files. This patch increases the
indexing buffer for the term to INP_NAME_MAX which is a log higher than
IT_MAX_WORD. The too-small size resulted in a truncations of long terms
(in fact phrases) that would be wrongly matched against the ISAM.
key[i++] = c;
while ((c = key_file_getc(f)))
{
- if (i <= IT_MAX_WORD)
+ if (i < INP_NAME_MAX-2)
key[i++] = c;
}
key[i++] = '\0';
/* for debugging only */
void zebra_log_dict_entry(ZebraHandle zh, const char *s)
{
- char dst[IT_MAX_WORD+1];
+ char dst[INP_NAME_MAX+1];
int ord;
int len = key_SU_decode(&ord, (const unsigned char *) s);
const char *index_type;