s1monw commented on code in PR #12829: URL: https://github.com/apache/lucene/pull/12829#discussion_r1419505134
########## lucene/core/src/java/org/apache/lucene/search/Sort.java: ########## @@ -59,10 +61,28 @@ public Sort() { * is still a tie after all SortFields are checked, the internal Lucene docid is used to break it. */ public Sort(SortField... fields) { + this(null, fields); + } + + /** + * Sets the sort to the given criteria in succession: the first SortField is checked first, but if + * it produces a tie, then the second SortField is used to break the tie, etc. Finally, if there + * is still a tie after all SortFields are checked, the internal Lucene docid is used to break it. + * + * @param parentField the name of a numeric doc values field that marks the last document of a Review Comment: @mikemccand do you mean we should rather make this a property of IWC rather than sort? That would be no issue. I used sort here since it's the only thing that is using this? -- 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: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org