Changeset: b66cdb7632c1 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/b66cdb7632c1 Modified Files: gdk/ChangeLog.Jul2021 sql/ChangeLog.Jul2021 Branch: Jul2021 Log Message:
Changelog blurbs. diffs (31 lines): diff --git a/gdk/ChangeLog.Jul2021 b/gdk/ChangeLog.Jul2021 --- a/gdk/ChangeLog.Jul2021 +++ b/gdk/ChangeLog.Jul2021 @@ -1,6 +1,12 @@ # ChangeLog file for GDK # This file is updated with Maddlog +* Wed Dec 14 2022 Sjoerd Mullender <[email protected]> +- Fixed a race condition where a hash could have been created on a + bat using the old bat count while in another thread the bat count + got updated. This would make the hash be based on too small a size, + causing failures later on. + * Thu Dec 8 2022 Sjoerd Mullender <[email protected]> - When extending a bat failed, the capacity had been updated already and was therefore too large. This could then later cause a crash. This has diff --git a/sql/ChangeLog.Jul2021 b/sql/ChangeLog.Jul2021 --- a/sql/ChangeLog.Jul2021 +++ b/sql/ChangeLog.Jul2021 @@ -1,6 +1,11 @@ # ChangeLog file for sql # This file is updated with Maddlog +* Wed Dec 14 2022 Sjoerd Mullender <[email protected]> +- Fixed cleanup after a failed allocation where the data being cleaned + up was unitialized but still used as pointers to memory that also had + to be freed. + * Wed Dec 7 2022 Sjoerd Mullender <[email protected]> - A bug was fixed when optimizing combining of range select subexpressions. _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
