This is an automated email from the ASF dual-hosted git repository. airborne pushed a commit to branch clucene in repository https://gitbox.apache.org/repos/asf/doris-thirdparty.git
The following commit(s) were added to refs/heads/clucene by this push: new 6213c3425bc [opt](inverted index) Refactor ICU tokenizer code location for better organization and maintainability. (#283) (#287) 6213c3425bc is described below commit 6213c3425bc204ea1ba37886c2143488761dba11 Author: zzzxl <yangs...@selectdb.com> AuthorDate: Tue Mar 4 11:01:29 2025 +0800 [opt](inverted index) Refactor ICU tokenizer code location for better organization and maintainability. (#283) (#287) --- src/core/CLucene/index/SegmentTermPositions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/CLucene/index/SegmentTermPositions.cpp b/src/core/CLucene/index/SegmentTermPositions.cpp index 5b5343c2e0b..7ddb1a2ad18 100644 --- a/src/core/CLucene/index/SegmentTermPositions.cpp +++ b/src/core/CLucene/index/SegmentTermPositions.cpp @@ -108,7 +108,7 @@ int32_t SegmentTermPositions::read(int32_t* /*docs*/, int32_t* /*freqs*/, int32_ } bool SegmentTermPositions::readRange(DocRange* docRange) { - _CLTHROWA(CL_ERR_UnsupportedOperation, "Unsupported operation: SegmentTermPositions::readDocRange"); + return SegmentTermDocs::readRange(docRange); } void SegmentTermPositions::skipProx(const int64_t proxPointer, const int32_t _payloadLength){ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org