summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-07-14 15:29:21 +0200
committerGitHub <noreply@github.com>2022-07-14 15:29:21 +0200
commitd460cbbc20ed4d4a936fc0125cac0fd413b90708 (patch)
treedfd8face63d86eea4ed3dee39c35c53f0b7edcc9
parent06440f3a587a32a026ac8ef55831854c0399ec47 (diff)
parent47a9f2c4eb16e7cd839f7c66b45e84651c3a1da5 (diff)
Merge pull request #23512 from vespa-engine/toregge/stop-storing-longstring-values-in-docsum-blobs-for-indexed-search
Stop storing longstring values in docsum blobs for indexed searched.
-rw-r--r--searchcore/src/vespa/searchcore/proton/docsummary/summarymanager.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/docsummary/summarymanager.cpp b/searchcore/src/vespa/searchcore/proton/docsummary/summarymanager.cpp
index d7f46f5edcc..4e1fdff6d13 100644
--- a/searchcore/src/vespa/searchcore/proton/docsummary/summarymanager.cpp
+++ b/searchcore/src/vespa/searchcore/proton/docsummary/summarymanager.cpp
@@ -103,6 +103,7 @@ SummarySetup(const vespalib::string & baseDir, const DocTypeName & docTypeName,
docsum_blob_entry_filter.add_skip(RES_INT64);
docsum_blob_entry_filter.add_skip(RES_STRING);
docsum_blob_entry_filter.add_skip(RES_DATA);
+ docsum_blob_entry_filter.add_skip(RES_LONG_STRING);
docsum_blob_entry_filter.add_skip(RES_LONG_DATA);
docsum_blob_entry_filter.add_skip(RES_JSONSTRING);
docsum_blob_entry_filter.add_skip(RES_TENSOR);