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

Fix for Issue #467 CLI myerrproc and remote_command opmode #468

Merged
merged 2 commits into from
Dec 7, 2022
Merged
Show file tree
Hide file tree
Changes from all 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
25 changes: 24 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ Version 4.5 Jul 2022
Pull Requests & Issues

Add SSL options to MySQL #376
Fix for o_all_local value update and insert #375 [#374)
Fix for o_all_local value update and insert #375 (#374)
SQL Server Schema/Stored Procedure Updates #372 (#371)
Fix RAISEEROR error in Asynch connect #366 (#365)
use correct transaction boundaries in MySQL / MariaDB and PG #356
Expand All @@ -1016,3 +1016,26 @@ set MariaDB autocommit to 1 for Monitor VU #333
Move history file tracking to interactive #332 (#320)
Add SSL connection options to MariaDB #331
Dependency build automation for Linux #323 (#36)


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

Version 4.6 Nov 2022

Pull Requests & Issues

Job Storage #453 (#420)
Add Alternative python CLI interface #452
Fix for issue #451 (#450)
Fix for keepalive issue #446 (#445)
Improve CLI diset error message #437
Add drop schema functionality #430
Fix MySQL/MariaDB TX Count Error Handling on Connection #419
Deprecate CLI runtimer #415
Add set virtual user to available cpus #409
Passwordless MariaDB connection #408
Allow to skip CA for MariaDB #407
Add SQL Server encrypt connection and trust certificate #406
Remove reconnect for PostgreSQL on windows #402
Hdb docker #401
fix typos #388
2 changes: 1 addition & 1 deletion src/generic/gencli.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ proc myerrorproc { id info } {
} else {
if { [ info exists threadsbytid($id) ] } {
set vuser [expr $threadsbytid($id) + 1]
set info "Error in Virtual User [$vuser]: $info"
set info "Error in Virtual User $vuser: $info"
putscli $info
hdbjobs eval {INSERT INTO JOBOUTPUT VALUES($jobid, $vuser, $info)}
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/generic/genmodes.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ proc distribute { } {
}

proc remote_command { command } {
upvar 1 opmode opmode
upvar #0 opmode opmode
global masterlist
if { $opmode eq "Primary" } {
foreach f $masterlist {
Expand Down