Skip to content

Commit

Permalink
Merge pull request #502 from sm-shaw/4.7_versions_changelog
Browse files Browse the repository at this point in the history
4.7 versions and changelog
  • Loading branch information
abondvt89 committed Feb 3, 2023
2 parents e7f45b7 + a4c5b2e commit ec1896a
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 13 deletions.
21 changes: 21 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -1039,3 +1039,24 @@ Add SQL Server encrypt connection and trust certificate #406
Remove reconnect for PostgreSQL on windows #402
Hdb docker #401
fix typos #388

---------------------------------------------------------------------

Version 4.7 Feb 2023

Pull Requests & Issues

Fix calculation of geomean in TPROC-H #504
Fix TPROC-H query 5 for Columnstore #503
Use db2tcl to create and drop database for DB2 #501 (#431)
Improve Transaction counter look and feel and resize when window resized #494 (#487)
remove trafodion configuration and files #485 (#484)
MySQL Heatwave TPROC-H support #483 (#482)
Query update for tpch columnstore benchmark #481 (#480)
Add tkpath to build #478
Prevent CLI hang when scripts finishes before enters event loop #473 (#472)
Updates to jobs for Docker scripts #471
Fix for Issue #467 CLI myerrproc and remote_command opmode #468 (#467)
Update omitted Changelog for v4.6 release #466
Fixing queries for Columnstore issue 459 #460 (#459)
Make jobs functionality modular #458
4 changes: 2 additions & 2 deletions agent/agent
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exit
# mpstatPlot -- visual display of mpstat idle value for all processors
# by Keith Vetter
#
# Copyright (C) 2003-2022 Steve Shaw
# Copyright (C) 2003-2023 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -40,7 +40,7 @@ namespace import comm::*
interp recursionlimit {} 3000
global agentlist S iswin
set iswin "false"
set version 4.6
set version 4.7

if {$tcl_platform(platform) == "windows"} {
package require twapi
Expand Down
2 changes: 1 addition & 1 deletion agent/mpstat.bat
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tclsh86t %0 %*
#
#Simulation of Linux mpstat program for Windows using Twapi
#
# Copyright (C) 2003-2022 Steve Shaw
# Copyright (C) 2003-2023 Steve Shaw
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
Expand Down
4 changes: 2 additions & 2 deletions hammerdb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exec wish8.6 -file $0 ${1+"$@"}
exit
########################################################################
# HammerDB
# Copyright (C) 2003-2022 Steve Shaw
# Copyright (C) 2003-2023 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -27,7 +27,7 @@ exit
# License along with this program; If not, see <https://www.gnu.org/licenses/>
########################################################################
global hdb_version
set hdb_version "v4.6"
set hdb_version "v4.7"
set mainGeometry +10+10
set UserDefaultDir [ file dirname [ info script ] ]
::tcl::tm::path add "$UserDefaultDir/modules"
Expand Down
6 changes: 3 additions & 3 deletions hammerdbcli
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export PYTHONPATH="./lib/tclpy0.4:$PYTHONPATH"
exec ./bin/tclsh8.6 "$0" ${1+"$@"}
########################################################################
# HammerDB
# Copyright (C) 2003-2022 Steve Shaw
# Copyright (C) 2003-2023 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -27,9 +27,9 @@ exec ./bin/tclsh8.6 "$0" ${1+"$@"}
# License along with this program; If not, see <https://www.gnu.org/licenses/>
########################################################################
global hdb_version
set hdb_version "v4.6"
set hdb_version "v4.7"
puts "HammerDB CLI $hdb_version"
puts "Copyright (C) 2003-2022 Steve Shaw"
puts "Copyright (C) 2003-2023 Steve Shaw"
if { $argc eq 0 } {
set argv0 "" } else { set argv0 [ string tolower [lindex $argv 0 ]] }
if { $argv0 == "" || $argv0 == "tcl" || $argv0 == "auto" } {
Expand Down
6 changes: 3 additions & 3 deletions hammerdbws
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export PATH="./bin:$PATH"
exec ./bin/tclsh8.6 "$0" ${1+"$@"}
########################################################################
# HammerDB
# Copyright (C) 2003-2022 Steve Shaw
# Copyright (C) 2003-2023 Steve Shaw
# Author contact information at: http://www.hammerdb.com
#
# This program is free software; you can redistribute it and/or
Expand All @@ -25,9 +25,9 @@ exec ./bin/tclsh8.6 "$0" ${1+"$@"}
# License along with this program; If not, see <https://www.gnu.org/licenses/>
########################################################################
global hdb_version
set hdb_version "v4.6"
set hdb_version "v4.7"
puts "HammerDB Web Service $hdb_version"
puts "Copyright (C) 2003-2022 Steve Shaw"
puts "Copyright (C) 2003-2023 Steve Shaw"
puts "Type \"help\" for a list of commands"
set UserDefaultDir [ file dirname [ info script ] ]
::tcl::tm::path add "$UserDefaultDir/modules"
Expand Down
4 changes: 2 additions & 2 deletions src/generic/gened.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1939,14 +1939,14 @@ proc vuser_options {} {
proc about { } {
global hdb_version
tk_messageBox -title About -message "HammerDB $hdb_version
Copyright (C) 2003-2022
Copyright (C) 2003-2023
Steve Shaw\n"
}

proc license { } {
tk_messageBox -title License -message "
This copyright notice must be included in all distributions.
Copyright (C) 2003-2022 Steve Shaw
Copyright (C) 2003-2023 Steve Shaw
This program is free software: you can redistribute it and/or modify it under the terms
of the GNU General Public License as published by the Free Software Foundation,
Expand Down

0 comments on commit ec1896a

Please sign in to comment.