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 4476b5c22e1 IGNITE-27304: Fix
4476b5c22e1 is described below

commit 4476b5c22e18af1ee8e6ddf57642038995038d5e
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 25 02:45:36 2026 +0100

    IGNITE-27304: Fix
---
 .teamcity/test/platform_tests/PlatformCppTestsWindows.kt  | 2 +-
 modules/platforms/cpp/ignite/odbc/install/install_win.ps1 | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt 
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index a610afce5c8..26358c7c6fb 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -105,7 +105,7 @@ object PlatformCppTestsWindows : BuildType({
             scriptMode = file {
                 path = 
"%PATH__WORKING_DIR%\\ignite\\odbc\\install\\install_win.ps1"
             }
-            scriptArgs = "install 
\"%PATH__CMAKE_BUILD_DIRECTORY%\\Debug\\bin\\ignite_odbc.dll\""
+            scriptArgs = "install 
\"%PATH__CMAKE_BUILD_DIRECTORY%\\Debug\\bin\\ignite3-odbc.dll\""
         }
         script {
             name = "ODBC integration tests"
diff --git a/modules/platforms/cpp/ignite/odbc/install/install_win.ps1 
b/modules/platforms/cpp/ignite/odbc/install/install_win.ps1
index 80cd5d7e7bc..eb3f9c8e9c8 100644
--- a/modules/platforms/cpp/ignite/odbc/install/install_win.ps1
+++ b/modules/platforms/cpp/ignite/odbc/install/install_win.ps1
@@ -3,7 +3,7 @@ param (
     [ValidateSet("install", "remove")]
     [string]$Mode,
 
-    [Parameter(Position = 1, HelpMessage = "Absolute path to the 64-bit ODBC 
driver file. Required for 'install' mode.")]
+    [Parameter(Position = 1, HelpMessage = "Absolute path to the ODBC driver 
file. Required for 'install' mode.")]
     [string]$DriverPath
 )
 
@@ -30,13 +30,13 @@ if ($Mode -eq "install") {
 
     # --- Validate DriverPath was supplied ---
     if (-not $DriverPath) {
-        Write-Error "DriverPath is required in 'install' mode. Call format: 
.\install_win.ps1 install <abs_path_to_64_bit_driver>"
+        Write-Error "DriverPath is required in 'install' mode. Call format: 
.\install_win.ps1 install <abs_path_to_driver>"
         exit 1
     }
 
     # --- Validate the path points to an existing file (not a directory) ---
     if (-not (Test-Path -LiteralPath $DriverPath)) {
-        Write-Error "64-bit driver cannot be found: $DriverPath"
+        Write-Error "Driver cannot be found: $DriverPath"
         exit 1
     }
 
@@ -46,7 +46,7 @@ if ($Mode -eq "install") {
     }
 
     # --- Install the driver ---
-    Write-Host "Installing 64-bit ODBC driver: $DriverPath"
+    Write-Host "Installing ODBC driver: $DriverPath"
 
     # Create the driver sub-key if it doesn't exist
     if (-not (Test-Path -LiteralPath $OdbcInstKey)) {

Reply via email to