Skip to content

Commit

Permalink
enhance: fetch simdjson directly in the format of targz (#31369)
Browse files Browse the repository at this point in the history
Signed-off-by: Liang Huang <[email protected]>
  • Loading branch information
yellow-shine authored and MrPresent-Han committed May 30, 2024
1 parent 8384825 commit cb718ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions internal/core/thirdparty/simdjson/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

FetchContent_Declare(
simdjson
GIT_REPOSITORY https://github.com/simdjson/simdjson.git
GIT_TAG v3.1.7
URL https://github.com/simdjson/simdjson/archive/refs/tags/v3.1.7.tar.gz
URL_HASH MD5=1b0d75ad32179c77f84f4a09d4214057
)
FetchContent_MakeAvailable(simdjson)
FetchContent_MakeAvailable(simdjson)
2 changes: 1 addition & 1 deletion internal/querynodev2/segments/result_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ func (suite *ResultSuite) TestResult_MergeStopForBestResult() {
suite.Run("merge stop one limited", func() {
result1.HasMoreResult = true
result2.HasMoreResult = false
result, err := MergeSegcoreRetrieveResultsV1(context.Background(), []*segcorepb.RetrieveResults{result1, result2},
result, err := MergeSegcoreRetrieveResults(context.Background(), []*segcorepb.RetrieveResults{result1, result2},
NewMergeParam(typeutil.Unlimited, make([]int64, 0), nil, true))
suite.NoError(err)
suite.Equal(2, len(result.GetFieldsData()))
Expand Down

0 comments on commit cb718ca

Please sign in to comment.