This is an automated email from the ASF dual-hosted git repository.

mxmanghi pushed a commit to branch 3.2
in repository https://gitbox.apache.org/repos/asf/tcl-rivet.git


The following commit(s) were added to refs/heads/3.2 by this push:
     new 38557a6  fixed error in variable name made impossible to actually pass 
TDBC specific options to a DBMS connector
38557a6 is described below

commit 38557a631ecf49d68d39b5ffa65f77115fe23ebe
Author: Massimo Manghi <mxman...@apache.org>
AuthorDate: Sun Jul 13 17:39:01 2025 +0200

    fixed error in variable name made impossible to actually pass TDBC specific 
options to a DBMS connector
---
 ChangeLog                       | 4 ++++
 rivet/packages/dio/dio_Tdbc.tcl | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 7e75e79..baf6b05 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2025-07-13 Massimo Manghi <mxman...@apache.org>
+    * rivet/packages/dio/dio_Tdbc.tcl: fixed error in variable name made 
impossible
+    to actually pass TDBC specific options to a DBMS connector
+
 2025-04-13 Massimo Manghi <mxman...@apache.org>
        * src/Makefile.am: wrap long definitions for improved readability
 
diff --git a/rivet/packages/dio/dio_Tdbc.tcl b/rivet/packages/dio/dio_Tdbc.tcl
index d7236fa..39a7529 100644
--- a/rivet/packages/dio/dio_Tdbc.tcl
+++ b/rivet/packages/dio/dio_Tdbc.tcl
@@ -85,7 +85,7 @@ namespace eval DIO {
         protected method handle_client_arguments {cargs} {
             set clientargs {}
             lmap {k v} $cargs {
-                if {[lsearch $k $tdbcarguments] >= 0} {
+                if {[lsearch $k $tdbc_arguments] >= 0} {
                     lappend clientargs $k $v
                 }
             }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@tcl.apache.org
For additional commands, e-mail: commits-h...@tcl.apache.org

Reply via email to