Changeset: 894d1ffbe45f for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/894d1ffbe45f Modified Files: ChangeLog-Archive MonetDB.spec debian/changelog sql/ChangeLog-Archive Branch: Dec2025 Log Message:
Retroactively added changelog messages. diffs (86 lines): diff --git a/ChangeLog-Archive b/ChangeLog-Archive --- a/ChangeLog-Archive +++ b/ChangeLog-Archive @@ -1,6 +1,16 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Tue Dec 16 2025 svetlin <[email protected]> - 11.55.1-20251209 +- Extended MonetDB’s memory allocator framework from the SQL layer to all + layers of the database server. The new memory allocator replaces all + malloc() and free() function calls in the MonetDB (server) code base. + The main features of the allocator framework include i) efficient + processing of large numbers of memory allocation calls, and ii) efficient + management of memory to avoid fragmentation. This update also enables + fine-grained configuration and monitoring of memory usage per thread, + per query, per client, etc. + * Tue Sep 16 2025 Sjoerd Mullender <[email protected]> - 11.55.1-20251209 - This server is no longer compatible with the MonetDB Stethoscope. diff --git a/MonetDB.spec b/MonetDB.spec --- a/MonetDB.spec +++ b/MonetDB.spec @@ -1057,6 +1057,21 @@ rm "${RPM_BUILD_ROOT}"%{_unitdir}/monetd %endif %changelog +* Tue Dec 16 2025 Lucas Pereira <[email protected]> - 11.55.1-20251209 +- sql: New implementation for the CONTAINS filter function for string data + types using a much faster algorithm based on the knowledge of the + bigram occurrences of the to-be-filtered column. + +* Tue Dec 16 2025 svetlin <[email protected]> - 11.55.1-20251209 +- Extended MonetDB’s memory allocator framework from the SQL layer to all + layers of the database server. The new memory allocator replaces all + malloc() and free() function calls in the MonetDB (server) code base. + The main features of the allocator framework include i) efficient + processing of large numbers of memory allocation calls, and ii) efficient + management of memory to avoid fragmentation. This update also enables + fine-grained configuration and monitoring of memory usage per thread, + per query, per client, etc. + * Tue Dec 09 2025 Sjoerd Mullender <[email protected]> - 11.55.1-20251209 - Rebuilt. - GH#7635: Unexpected Inner Join Crash diff --git a/debian/changelog b/debian/changelog --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,22 @@ +monetdb (11.55.1) unstable; urgency=low + + * sql: New implementation for the CONTAINS filter function for string data + types using a much faster algorithm based on the knowledge of the + bigram occurrences of the to-be-filtered column. + + -- Lucas Pereira <[email protected]> Tue, 16 Dec 2025 17:00:00 +0100 + + * Extended MonetDB’s memory allocator framework from the SQL layer to all + layers of the database server. The new memory allocator replaces all + malloc() and free() function calls in the MonetDB (server) code base. + The main features of the allocator framework include i) efficient + processing of large numbers of memory allocation calls, and ii) efficient + management of memory to avoid fragmentation. This update also enables + fine-grained configuration and monitoring of memory usage per thread, + per query, per client, etc. + + -- svetlin <[email protected]> Tue, 16 Dec 2025 17:00:00 +0100 + monetdb (11.55.1) unstable; urgency=low * Rebuilt. diff --git a/sql/ChangeLog-Archive b/sql/ChangeLog-Archive --- a/sql/ChangeLog-Archive +++ b/sql/ChangeLog-Archive @@ -1,6 +1,11 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Tue Dec 16 2025 Lucas Pereira <[email protected]> - 11.55.1-20251209 +- New implementation for the CONTAINS filter function for string data + types using a much faster algorithm based on the knowledge of the + bigram occurrences of the to-be-filtered column. + * Mon Nov 10 2025 Joeri van Ruth <[email protected]> - 11.55.1-20251209 - Add functions to_hex(int) and to_hex(bigint). They return the unsigned hexadecimal string representation of their argument. _______________________________________________ checkin-list mailing list -- [email protected] To unsubscribe send an email to [email protected]
