[feature-wip](inverted index) API for inverted index reader and syntax for fulltext match (#14211)
* [feature-wip](inverted index)inverted index api: reader * [feature-wip](inverted index) Fulltext query syntax with MATCH/MATCH_ALL/MATCH_ALL * [feature-wip](inverted index) Adapt to index meta * [enhance] add more metrics * [enhance] add fulltext match query check for column type and index parser * [feature-wip](inverted index) Support apply inverted index in compound predicate which except leaf node of and node
This commit is contained in:
@ -37,6 +37,7 @@
|
||||
#include "exprs/is_null_predicate.h"
|
||||
#include "exprs/json_functions.h"
|
||||
#include "exprs/like_predicate.h"
|
||||
#include "exprs/match_predicate.h"
|
||||
#include "exprs/math_functions.h"
|
||||
#include "exprs/new_in_predicate.h"
|
||||
#include "exprs/operators.h"
|
||||
@ -404,6 +405,7 @@ void Daemon::init(int argc, char** argv, const std::vector<StorePath>& paths) {
|
||||
HashFunctions::init();
|
||||
TopNFunctions::init();
|
||||
DummyTableFunctions::init();
|
||||
MatchPredicate::init();
|
||||
|
||||
LOG(INFO) << CpuInfo::debug_string();
|
||||
LOG(INFO) << DiskInfo::debug_string();
|
||||
|
||||
Reference in New Issue
Block a user