mkhludnev commented on a change in pull request #1034: SOLR-13863: payload query function now handles string encoded payload field (delimited_payloads_string) URL: https://github.com/apache/lucene-solr/pull/1034#discussion_r360661332
########## File path: lucene/core/src/java/org/apache/lucene/index/PostingsEnum.java ########## @@ -67,6 +67,56 @@ public static boolean featureRequested(int flags, short feature) { protected PostingsEnum() { } + /** + * Dummy PostingsEnum object. + */ + public static PostingsEnum DUMMY_INSTANCE = new PostingsEnum() { Review comment: Please look at org.apache.lucene.search.DocIdSetIterator.empty() There's subtle exhausting logic which needs to be supported and you can follow naming as well. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org