benwtrent commented on code in PR #15383:
URL: https://github.com/apache/lucene/pull/15383#discussion_r2487831236
##########
lucene/core/src/java/org/apache/lucene/util/DocIdSetBuilder.java:
##########
@@ -41,7 +41,11 @@ public final class DocIdSetBuilder {
*
* @see DocIdSetBuilder#grow
*/
- public sealed interface BulkAdder permits FixedBitSetAdder, BufferAdder {
+ public sealed interface BulkAdder
+ permits FixedBitSetAdder,
+ BufferAdder,
+ PartitionAwareFixedBitSetAdder,
+ PartitionAwareBufferAdder {
Review Comment:
This is now megamorphic :(((((
##########
lucene/core/src/java/org/apache/lucene/util/DocIdSetBuilder.java:
##########
@@ -41,7 +41,11 @@ public final class DocIdSetBuilder {
*
* @see DocIdSetBuilder#grow
*/
- public sealed interface BulkAdder permits FixedBitSetAdder, BufferAdder {
+ public sealed interface BulkAdder
+ permits FixedBitSetAdder,
+ BufferAdder,
+ PartitionAwareFixedBitSetAdder,
+ PartitionAwareBufferAdder {
Review Comment:
This is now megamorphic :(
--
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]