This is an automated email from the ASF dual-hosted git repository.
isapego pushed a commit to branch ignite-27304
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-27304 by this push:
new 980f1b979f4 IGNITE-27304 Debug
980f1b979f4 is described below
commit 980f1b979f4c6f386cc463d4b15544db421ef16e
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 25 13:45:32 2026 +0100
IGNITE-27304 Debug
---
.teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 1 +
modules/platforms/cpp/tests/odbc-test/transaction_test.cpp | 2 ++
2 files changed, 3 insertions(+)
diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index 01454e8b853..26358c7c6fb 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -97,6 +97,7 @@ object PlatformCppTestsWindows : BuildType({
)
""".trimIndent()
formatStderrAsError = true
+ enabled = false
}
powerShell {
name = "Install ODBC"
diff --git a/modules/platforms/cpp/tests/odbc-test/transaction_test.cpp
b/modules/platforms/cpp/tests/odbc-test/transaction_test.cpp
index 1c1c1558785..6aa765f2654 100644
--- a/modules/platforms/cpp/tests/odbc-test/transaction_test.cpp
+++ b/modules/platforms/cpp/tests/odbc-test/transaction_test.cpp
@@ -657,5 +657,7 @@ TEST_F(transaction_test,
heartbeat_disable_connection_is_closed) {
ret = SQLEndTran(SQL_HANDLE_ENV, m_env, SQL_ROLLBACK);
+ std::cout << "Error message: " << get_odbc_error_message(SQL_HANDLE_ENV,
m_env) << std::endl;
+
EXPECT_EQ(ret, SQL_ERROR);
}