dweiss commented on code in PR #15584:
URL: https://github.com/apache/lucene/pull/15584#discussion_r3145416511


##########
lucene/test-framework/src/java/org/apache/lucene/tests/util/LuceneTestCase.java:
##########
@@ -1557,7 +1557,7 @@ public static synchronized Field newField(
       newType.setStored(true); // randomly store it
     }
     if (newType.indexOptions() != IndexOptions.NONE) {
-      if (!newType.storeTermVectors() && random.nextBoolean()) {
+      if (!newType.storeTermVectors() && random.nextBoolean() && false) {
         newType.setStoreTermVectors(true);

Review Comment:
   This change turned off an entire section of the code - I think it's 
accidental (?). @msokolov can you confirm?



-- 
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]

Reply via email to