anton-vinogradov commented on code in PR #13095:
URL: https://github.com/apache/ignite/pull/13095#discussion_r3545398135
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/operation/SchemaAddQueryEntityOperation.java:
##########
@@ -19,22 +19,21 @@
import java.util.Collection;
import java.util.UUID;
-import org.apache.ignite.IgniteCheckedException;
import org.apache.ignite.cache.QueryEntity;
-import org.apache.ignite.internal.MarshallableMessage;
+import org.apache.ignite.internal.Marshalled;
import org.apache.ignite.internal.Order;
-import org.apache.ignite.internal.util.typedef.internal.U;
-import org.apache.ignite.marshaller.Marshaller;
+import org.apache.ignite.plugin.extensions.communication.Message;
/**
* Enabling indexing on cache operation.
*/
-public class SchemaAddQueryEntityOperation extends SchemaAbstractOperation
implements MarshallableMessage {
+public class SchemaAddQueryEntityOperation extends SchemaAbstractOperation
implements Message {
/** */
private static final long serialVersionUID = 0L;
/** */
- private Collection<QueryEntity> entities;
+ @Marshalled("qryEntitiesBytes")
Review Comment:
See next field
--
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]