cpoerschke commented on code in PR #1557:
URL: https://github.com/apache/solr/pull/1557#discussion_r1475971844
##########
solr/core/src/java/org/apache/solr/handler/admin/IndexSizeEstimator.java:
##########
@@ -391,12 +391,12 @@ private void estimateTermVectors(Map<String, Object>
result) throws IOException
if (liveDocs != null && !liveDocs.get(docId)) {
continue;
}
- Fields vectors = termVectors.get(docId);
- if (vectors == null) {
+ Fields fields = termVectors.get(docId);
+ if (fields == null) {
Review Comment:
https://github.com/apache/solr/pull/1557/commits/dc6323fbce6c51caff1bc32ca36412d3fa15507f
to retain the original `termVectors` name for the `Fields` object, using
`leafTermVectors` as the name for the new `TermVectors` object.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]