This is an automated email from the ASF dual-hosted git repository.
sergeychugunov 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 4cfac73af44 IGNITE-26953 Use `sleep` SQL function instead of removed
`delay` (#12501)
4cfac73af44 is described below
commit 4cfac73af449529c5ee48c32bd7703dca144c6c5
Author: Sergey Chugunov <[email protected]>
AuthorDate: Thu Nov 6 17:46:14 2025 +0400
IGNITE-26953 Use `sleep` SQL function instead of removed `delay` (#12501)
---
modules/platforms/cpp/odbc-test/src/queries_test.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/platforms/cpp/odbc-test/src/queries_test.cpp
b/modules/platforms/cpp/odbc-test/src/queries_test.cpp
index aed97bac9dc..077b31f4905 100644
--- a/modules/platforms/cpp/odbc-test/src/queries_test.cpp
+++ b/modules/platforms/cpp/odbc-test/src/queries_test.cpp
@@ -1958,7 +1958,7 @@ BOOST_AUTO_TEST_CASE(TestConnectionTimeoutQueryExpires)
ODBC_FAIL_ON_ERROR(ret, SQL_HANDLE_DBC, dbc);
- SQLCHAR req[] = "select delay(5000)";
+ SQLCHAR req[] = "select sleep(5000)";
ret = SQLExecDirect(stmt, req, SQL_NTS);