MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / Index_SetLanguage

Function Index_SetLanguage

src/index/index.c:541–551  ·  view source on GitHub ↗

set indexed language

Source from the content-addressed store, hash-verified

539
540// set indexed language
541void Index_SetLanguage
542(
543 Index idx,
544 const char *language
545) {
546 ASSERT(idx != NULL);
547 ASSERT(language != NULL);
548 ASSERT(idx->language == NULL);
549
550 idx->language = rm_strdup(language);
551}
552
553// set indexed stopwords
554void Index_SetStopwords

Callers 4

_RdbLoadFullTextIndexFunction · 0.85
_RdbLoadFullTextIndexFunction · 0.85
_RdbLoadFullTextIndexFunction · 0.85

Calls 1

rm_strdupFunction · 0.85

Tested by

no test coverage detected