Repository: ignite Updated Branches: refs/heads/ignite-2.5 f68ee153d -> 0f315be51
IGNITE-7999: JDBC Thin Driver: added unordered streaming mode. This closes #3789. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/0f315be5 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/0f315be5 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/0f315be5 Branch: refs/heads/ignite-2.5 Commit: 0f315be51578168273642ce991c11eef38612f80 Parents: f68ee15 Author: tledkov-gridgain <[email protected]> Authored: Fri May 11 18:02:08 2018 +0300 Committer: devozerov <[email protected]> Committed: Fri May 11 18:02:08 2018 +0300 ---------------------------------------------------------------------- .../java/org/apache/ignite/internal/jdbc/thin/JdbcThinTcpIo.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/0f315be5/modules/core/src/main/java/org/apache/ignite/internal/jdbc/thin/JdbcThinTcpIo.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/jdbc/thin/JdbcThinTcpIo.java b/modules/core/src/main/java/org/apache/ignite/internal/jdbc/thin/JdbcThinTcpIo.java index 37223c4..44c1984 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/jdbc/thin/JdbcThinTcpIo.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/jdbc/thin/JdbcThinTcpIo.java @@ -435,7 +435,7 @@ public class JdbcThinTcpIo { } try { - if (!igniteVer.greaterThanEqual(2, 4, 6)) { + if (!igniteVer.greaterThanEqual(2, 5, 0)) { throw new SQLException("Streaming without response doesn't supported by server [driverProtocolVer=" + CURRENT_VER + ", remoteNodeVer=" + igniteVer + ']', SqlStateCode.INTERNAL_ERROR); }
