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
commit c6f2c780dccfe52c6ad867769911db10e3fc9ef7 Author: Massimo Manghi <[email protected]> AuthorDate: Mon Mar 2 12:56:44 2026 +0100 fix missing resultid public variable in TDBCResults --- rivet/packages/dio/dio_Tdbc.tcl | 1 + rivet/packages/dio/formatters.tcl | 2 ++ 2 files changed, 3 insertions(+) diff --git a/rivet/packages/dio/dio_Tdbc.tcl b/rivet/packages/dio/dio_Tdbc.tcl index b39375e..fc3fdf5 100644 --- a/rivet/packages/dio/dio_Tdbc.tcl +++ b/rivet/packages/dio/dio_Tdbc.tcl @@ -337,6 +337,7 @@ namespace eval DIO { public variable rowid public variable cached_rows public variable columns + public variable resultid constructor {args} { eval configure $args diff --git a/rivet/packages/dio/formatters.tcl b/rivet/packages/dio/formatters.tcl index cc69ea2..ced4467 100644 --- a/rivet/packages/dio/formatters.tcl +++ b/rivet/packages/dio/formatters.tcl @@ -19,6 +19,8 @@ # specific language governing permissions and limitations # under the License. +package require Itcl + namespace eval ::DIO::formatters { # ::itcl::class RootFormatter --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
