You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2022/05/26 07:00:20 UTC

[ignite-3] branch ignite-14972 updated: IGNITE-14972 Thin 3.0: Implement SQL API for java thin client

This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a commit to branch ignite-14972
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/ignite-14972 by this push:
     new 52d276b4a IGNITE-14972 Thin 3.0: Implement SQL API for java thin client
52d276b4a is described below

commit 52d276b4ac6622ee4decec61a218f6cabadb6891
Author: Pavel Tupitsyn <pt...@apache.org>
AuthorDate: Thu May 26 10:00:12 2022 +0300

    IGNITE-14972 Thin 3.0: Implement SQL API for java thin client
---
 .../java/org/apache/ignite/internal/client/proto/ClientOp.java   | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/modules/client-common/src/main/java/org/apache/ignite/internal/client/proto/ClientOp.java b/modules/client-common/src/main/java/org/apache/ignite/internal/client/proto/ClientOp.java
index 49f9f577d..67d0c948e 100644
--- a/modules/client-common/src/main/java/org/apache/ignite/internal/client/proto/ClientOp.java
+++ b/modules/client-common/src/main/java/org/apache/ignite/internal/client/proto/ClientOp.java
@@ -128,4 +128,13 @@ public class ClientOp {
 
     /** Execute compute job. */
     public static final int COMPUTE_EXECUTE_COLOCATED = 49;
+
+    /** Execute SQL query. */
+    public static final int SQL_EXEC = 50;
+
+    /** Get next page. */
+    public static final int SQL_CURSOR_NEXT_PAGE = 51;
+
+    /** Close cursor. */
+    public static final int SQL_CURSOR_CLOSE = 52;
 }