Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.8 version numbers and changelog #559

Merged
merged 5 commits into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -1063,3 +1063,20 @@ 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

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

Version 4.8 Jun 2023

Pull Requests & Issues

Allow using existing empty database for Db2 TPROC-C and TPROC-H #560 (#548)
Enhancement for storing and retrieval of HammerDB results and configurations #558 (#352)
MySQL/MariaDB L_ORDERKEY to BIGINT #556 (#551)
Update mssqlsoltp.tcl #541 (#538)
Auto scale factor for TPC-H (issue 23) #539 (#23)
Fix doc bug for VU/warehouse count #535 (#534)
Repair ora_compatible OSTAT procedure #531
Add jobs getchart command #530
Add CLI savescript and custommonitor commands #522 (#521)
Create CONTRIBUTING.md #517
2 changes: 1 addition & 1 deletion agent/agent
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace import comm::*
interp recursionlimit {} 3000
global agentlist S iswin
set iswin "false"
set version 4.7
set version 4.8

if {$tcl_platform(platform) == "windows"} {
package require twapi
Expand Down
2 changes: 1 addition & 1 deletion hammerdb
Original file line number Diff line number Diff line change
Expand Up @@ -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.7"
set hdb_version "v4.8"
set mainGeometry +10+10
set UserDefaultDir [ file dirname [ info script ] ]
::tcl::tm::path add "$UserDefaultDir/modules"
Expand Down
2 changes: 1 addition & 1 deletion hammerdbcli
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ 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.7"
set hdb_version "v4.8"
puts "HammerDB CLI $hdb_version"
puts "Copyright (C) 2003-2023 Steve Shaw"
if { $argc eq 0 } {
Expand Down
2 changes: 1 addition & 1 deletion hammerdbws
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ 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.7"
set hdb_version "v4.8"
puts "HammerDB Web Service $hdb_version"
puts "Copyright (C) 2003-2023 Steve Shaw"
puts "Type \"help\" for a list of commands"
Expand Down