Changeset: 87886c792331 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/87886c792331 Modified Files: gdk/ChangeLog.Jun2020 sql/ChangeLog.Jun2020 tools/merovingian/ChangeLog.Jun2020 Branch: Jun2020 Log Message:
Updated changelog messages by copying them from the Oct2020 release. diffs (51 lines): diff --git a/gdk/ChangeLog.Jun2020 b/gdk/ChangeLog.Jun2020 --- a/gdk/ChangeLog.Jun2020 +++ b/gdk/ChangeLog.Jun2020 @@ -7,7 +7,11 @@ (write-ahead log) and low level (so-called subcommit). - Improved BATproject for string bats. - Improved low-level algorithm selection in join. -- Bugs were fixed that could in rare cases cause an empty string that - had been added to a BAT earlier to be seen as a non-empty string, - even as one with an invalid UTF-8 encoding. +* Mon May 3 2021 Sjoerd Mullender <[email protected]> +- A bug that would very occasionally produce an error "strPut: incorrectly + encoded UTF-8", even when no incorrectly coded characters are used + at all, has been fixed. It was the result of a rare combination of + strings having been added to the column that caused essentially an + off-by-one type of error to occur. + diff --git a/sql/ChangeLog.Jun2020 b/sql/ChangeLog.Jun2020 --- a/sql/ChangeLog.Jun2020 +++ b/sql/ChangeLog.Jun2020 @@ -6,6 +6,9 @@ logging.setcomplevel('SQL_EXECUTION', 'INFO'); - Comments inside queries are now available in the sys.queue function/view. -- Fixed an issue where under heavy concurrent workloads, data could be - lost in a sequence of truncate/delete all queries. +* Mon May 3 2021 Sjoerd Mullender <[email protected]> +- A bug where a sequence of TRUNCATE TABLE and COPY INTO the just + truncated table would result in success being reported to both queries, + but the table still being empty afterwards, has been fixed. + diff --git a/tools/merovingian/ChangeLog.Jun2020 b/tools/merovingian/ChangeLog.Jun2020 --- a/tools/merovingian/ChangeLog.Jun2020 +++ b/tools/merovingian/ChangeLog.Jun2020 @@ -1,6 +1,12 @@ # ChangeLog file for sql/src/backends/monet5/merovingian # This file is updated with mchangelog -* Mon May 9 2022 Sjoerd Mullender <[email protected]> -- Allow -1 for exittimeout, with the meaning: terminate and wait. +* Mon May 3 2021 Sjoerd Mullender <[email protected]> +- When stopping monetdbd using the `monetdbd stop' command, this command + now waits for 5 seconds longer than the exittimeout value before it + kills the monetdbd daemon instead of only 30 seconds total (or until + that daemon stops earlier). This gives the daemon enough time to + terminate the mserver5 processes that it is managing. If exittimeout + is negative, the daemon and the monetdbd process initiating the stop + wait indefinitely until the mserver5 processes have stopped. _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
