This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push:
new 7b786475bae IGNITE-26686 Disable flaky ODBC tests (#6937)
7b786475bae is described below
commit 7b786475baec4f082d0ab70140060674c2b35678
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Nov 11 14:41:59 2025 +0400
IGNITE-26686 Disable flaky ODBC tests (#6937)
---
modules/platforms/cpp/tests/odbc-test/odbc_suite.h | 1 +
modules/platforms/cpp/tests/odbc-test/queries_test.cpp | 3 ++-
modules/platforms/cpp/tests/odbc-test/ssl_test.cpp | 6 ++++--
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/modules/platforms/cpp/tests/odbc-test/odbc_suite.h
b/modules/platforms/cpp/tests/odbc-test/odbc_suite.h
index adb56b076f3..b1c285484ad 100644
--- a/modules/platforms/cpp/tests/odbc-test/odbc_suite.h
+++ b/modules/platforms/cpp/tests/odbc-test/odbc_suite.h
@@ -69,6 +69,7 @@ public:
* @return Basic connection string with specified addresses.
*/
static std::string get_basic_connection_string(const std::string &addrs) {
+ // TODO: IGNITE-27013 Make sure that heartbeats are enabled by default
and is set to 2 seconds.
return "driver={" + DRIVER_NAME + "};address=" + addrs + ';';
}
diff --git a/modules/platforms/cpp/tests/odbc-test/queries_test.cpp
b/modules/platforms/cpp/tests/odbc-test/queries_test.cpp
index e6f90ba2901..82e4acc7df8 100644
--- a/modules/platforms/cpp/tests/odbc-test/queries_test.cpp
+++ b/modules/platforms/cpp/tests/odbc-test/queries_test.cpp
@@ -1217,7 +1217,8 @@ TEST_F(queries_test, test_non_full_batch_select_100_60) {
insert_non_full_batch_select(100, 60);
}
-TEST_F(queries_test, test_non_full_batch_select_1000_239) {
+// TODO: IGNITE-27013 Re-enable after heartbeats are implemented.
+TEST_F(queries_test, DISABLED_test_non_full_batch_select_1000_239) {
odbc_connect(get_basic_connection_string());
insert_non_full_batch_select(1000, 239);
diff --git a/modules/platforms/cpp/tests/odbc-test/ssl_test.cpp
b/modules/platforms/cpp/tests/odbc-test/ssl_test.cpp
index 200904cbd2a..4e71bba3a69 100644
--- a/modules/platforms/cpp/tests/odbc-test/ssl_test.cpp
+++ b/modules/platforms/cpp/tests/odbc-test/ssl_test.cpp
@@ -251,13 +251,15 @@ TEST_F(ssl_test, ssl_connection_error_non_existing_cert)
ignite_error);
}
-TEST_F(ssl_test, ssl_batch_select_1000_345) {
+// TODO: IGNITE-27013 Re-enable after heartbeats are implemented.
+TEST_F(ssl_test, DISABLED_ssl_batch_select_1000_345) {
connect_successfully_to_ssl_server();
insert_non_full_batch_select(1000, 345);
}
-TEST_F(ssl_test, ssl_ca_batch_select_1000_345) {
+// TODO: IGNITE-27013 Re-enable after heartbeats are implemented.
+TEST_F(ssl_test, DISABLED_ssl_ca_batch_select_1000_345) {
connect_successfully_to_ssl_ca_server();
insert_non_full_batch_select(1000, 345);