Changeset: 07be72ce76e3 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/07be72ce76e3 Branch: default Log Message:
Merge with Sep2022 branch. diffs (66 lines): diff --git a/clients/ChangeLog.Sep2022 b/clients/ChangeLog.Sep2022 --- a/clients/ChangeLog.Sep2022 +++ b/clients/ChangeLog.Sep2022 @@ -1,3 +1,6 @@ # ChangeLog file for clients # This file is updated with Maddlog +* Wed Nov 9 2022 Sjoerd Mullender <sjo...@acm.org> +- Also dump the new options of CREATE USER. + diff --git a/gdk/ChangeLog.Sep2022 b/gdk/ChangeLog.Sep2022 --- a/gdk/ChangeLog.Sep2022 +++ b/gdk/ChangeLog.Sep2022 @@ -1,6 +1,13 @@ # ChangeLog file for GDK # This file is updated with Maddlog +* Wed Nov 9 2022 Sjoerd Mullender <sjo...@acm.org> +- On Windows, use the wide-character interface of system calls when + dealing with the environment (i.e. file names and getenv()). +- Memory leaks have been fixed. +- Improved maintenance of the estimated number of distinct values in BATs. + The estimate helps in deciding which low-level algorithm to use. + * Mon Oct 10 2022 Sjoerd Mullender <sjo...@acm.org> - Offset heaps (.tailN files) were growing too fast and unnecessarily under certain conditions. This has been fixed. Also, when such too diff --git a/monetdb5/ChangeLog.Sep2022 b/monetdb5/ChangeLog.Sep2022 --- a/monetdb5/ChangeLog.Sep2022 +++ b/monetdb5/ChangeLog.Sep2022 @@ -1,6 +1,12 @@ # ChangeLog file for MonetDB5 # This file is updated with Maddlog +* Wed Nov 9 2022 Sjoerd Mullender <sjo...@acm.org> +- Fixed a crash when the server runs out of client contexts (i.e. more + concurrent clients than the server is configured to handle). +- A race condition in the SHA hash code was fixed which resulted in + occasional failed connection attempts when they occurred concurrently. + * Wed Oct 19 2022 Sjoerd Mullender <sjo...@acm.org> - Fix a bug where the MAL optimizer would use the starttime of the previous query to determine whether a query timeout occurred. diff --git a/monetdb5/modules/kernel/batstr.c b/monetdb5/modules/kernel/batstr.c --- a/monetdb5/modules/kernel/batstr.c +++ b/monetdb5/modules/kernel/batstr.c @@ -3039,7 +3039,7 @@ bailout: static str STRbatSubstitutecst(Client cntxt, MalBlkPtr mb, MalStkPtr stk, InstrPtr pci) { - const bit *rep = getArgReference_bit(stk, pci, 0); + const bit *rep = getArgReference_bit(stk, pci, 4); return STRbatSubstitutecst_imp(cntxt, mb, stk, pci, 6, rep); } diff --git a/sql/ChangeLog.Sep2022 b/sql/ChangeLog.Sep2022 --- a/sql/ChangeLog.Sep2022 +++ b/sql/ChangeLog.Sep2022 @@ -1,3 +1,7 @@ # ChangeLog file for sql # This file is updated with Maddlog +* Wed Nov 9 2022 Sjoerd Mullender <sjo...@acm.org> +- Improved the handling of the "idle" value in the sys.sessions function + and view. + _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org