From 5a41ca990be33387b0d5d15836a465bbe5ff5a28 Mon Sep 17 00:00:00 2001 From: Alex Saveliev Date: Tue, 7 Feb 2023 20:02:36 -0800 Subject: Update icing from upstream ====================================================================== Adds a proto change for the delete propagation option ====================================================================== [ez] Change version to magic for PersistentHashMap ====================================================================== [iOS][testing][nitro] Disabling ICU language segmenter_test. ====================================================================== 1. Add support for segmentation in the QueryVisitor. ====================================================================== Support the new double list type in ScoreExpression ====================================================================== Pass JoinChildrenFetcher from IcingSearchEngine all the way down to ScoringVisitor ====================================================================== Refactor the logic of Icing Joins so that nested search and scoring will be performed before the parent ====================================================================== Add lite-index thread-safety tests. ====================================================================== Split IcingSearchEngineTest into separate tests to cover specific apis: ====================================================================== Fix index tests TearDown method. ====================================================================== Improve query concurrency by providing a finer-grained lock around the LiteIndex. ====================================================================== Fix Icing normalization bug ====================================================================== [ez] Fix integer overflow error for IntegerIndexStorage ====================================================================== [NumericSearch][Storage][11/x] Implement Reset and destructor for IntegerIndex ====================================================================== [NumericSearch][Storage][10/x] Add class IntegerIndex ====================================================================== Refactor NumericIndex based on PersistentStorage ====================================================================== Refactor IntegerIndexStorage based on PersistentStorage ====================================================================== Add "working_path" into PersistentStorage ====================================================================== Refactor PersistentHashMap based on PersistentStorage ====================================================================== Create virtual class PersistentStorage for refactoring ====================================================================== Avoids returning reference to local temporary object. ====================================================================== LSC: Clean up references to the legacy protobuf compat library ====================================================================== Fix time complexity regression for snippet retriever Bug: 256022027 Bug: 193919210 Bug: 266132035 Bug: 208654892 Bug: 261474063 Bug: 266103594 Bug: 146008613 Bug: 253182853 Bug: 266204868 Bug: 249829533 Bug: 266665956 Bug: 265258364 Change-Id: Ib2398c5097b6a2a57900e2ad4e3737502aa13820 --- icing/store/document-store_test.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'icing/store/document-store_test.cc') diff --git a/icing/store/document-store_test.cc b/icing/store/document-store_test.cc index 7cf951a..a115e11 100644 --- a/icing/store/document-store_test.cc +++ b/icing/store/document-store_test.cc @@ -88,7 +88,9 @@ const NamespaceStorageInfoProto& GetNamespaceStorageInfo( // Didn't find our namespace, fail the test. EXPECT_TRUE(false) << "Failed to find namespace '" << name_space << "' in DocumentStorageInfoProto."; - return std::move(NamespaceStorageInfoProto()); + static const auto& default_namespace_storage_info = + *new NamespaceStorageInfoProto(); + return default_namespace_storage_info; } UsageReport CreateUsageReport(std::string name_space, std::string uri, -- cgit v1.2.3