This is an automated email from the ASF dual-hosted git repository.
ivandasch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new 2f5df94e074 IGNITE-18107 C++: Fix tests for openssl 3.0, fix odbc with
calcite engine (#10369)
2f5df94e074 is described below
commit 2f5df94e07405fa8d3b7c5e3b13f687d76e18a07
Author: Ivan Daschinskiy <[email protected]>
AuthorDate: Wed Nov 9 15:21:04 2022 +0300
IGNITE-18107 C++: Fix tests for openssl 3.0, fix odbc with calcite engine
(#10369)
---
modules/calcite/pom.xml | 6 ++++++
modules/platforms/cpp/thin-client-test/src/ssl_test.cpp | 3 ++-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/modules/calcite/pom.xml b/modules/calcite/pom.xml
index 5bfc03b2b77..a75ac64b594 100644
--- a/modules/calcite/pom.xml
+++ b/modules/calcite/pom.xml
@@ -146,6 +146,12 @@
<version>${slf4j.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.locationtech.jts</groupId>
+ <artifactId>jts-core</artifactId>
+ <version>1.19.0</version>
+ </dependency>
+
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
diff --git a/modules/platforms/cpp/thin-client-test/src/ssl_test.cpp
b/modules/platforms/cpp/thin-client-test/src/ssl_test.cpp
index 10770e436ec..55dba8eda66 100644
--- a/modules/platforms/cpp/thin-client-test/src/ssl_test.cpp
+++ b/modules/platforms/cpp/thin-client-test/src/ssl_test.cpp
@@ -228,7 +228,8 @@ bool IsNonExisting(const ignite::IgniteError& err)
std::string msg(err.GetText());
if (msg.find("error:02001002") == std::string::npos &&
- msg.find("error:2006D080") == std::string::npos)
+ msg.find("error:2006D080") == std::string::npos &&
+ msg.find("error:80000002") == std::string::npos)
return false;
if (msg.find("No such file or directory") == std::string::npos &&