alex-plekhanov commented on code in PR #12599:
URL: https://github.com/apache/ignite/pull/12599#discussion_r2648296055
##########
modules/core/src/main/java/org/apache/ignite/spi/indexing/IndexingQueryFilterImpl.java:
##########
@@ -54,6 +54,24 @@ public class IndexingQueryFilterImpl implements
IndexingQueryFilter {
*/
private final boolean treatReplicatedAsPartitioned;
+ /**
+ * Constructor.
+ *
+ * @param ctx Kernal context.
+ * @param topVer Topology version.
+ * @param parts Partitions set.
+ */
+ public IndexingQueryFilterImpl(
Review Comment:
Call to `this(...)` must be the first statement in the constuctor. We can't
build `parts` `BitSet` before the first statement (we can create new parts
conversion method, but looks like there will be more code then without reusing
the constructor)
--
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]