Changeset: 2366418b3d88 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2366418b3d88 Modified Files: MonetDB.spec buildtools/ChangeLog-Archive buildtools/ChangeLog.Apr2019 debian/changelog gdk/ChangeLog-Archive gdk/ChangeLog.Apr2019 sql/ChangeLog-Archive sql/ChangeLog.Apr2019 Branch: Apr2019 Log Message:
Moved contents of ChangeLog.Apr2019 to MonetDB.spec, debian/changelog and ChangeLog-Archive. diffs (235 lines): diff --git a/MonetDB.spec b/MonetDB.spec --- a/MonetDB.spec +++ b/MonetDB.spec @@ -113,7 +113,7 @@ Group: Applications/Databases License: MPLv2.0 URL: https://www.monetdb.org/ BugURL: https://bugs.monetdb.org/ -Source: https://www.monetdb.org/downloads/sources/Apr2019/%{name}-%{version}.tar.bz2 +Source: https://www.monetdb.org/downloads/sources/Apr2019-SP1/%{name}-%{version}.tar.bz2 # we need systemd for the _unitdir macro to exist # we need checkpolicy and selinux-policy-devel for the SELinux policy @@ -1079,6 +1079,56 @@ done %postun -p /sbin/ldconfig %changelog +* Thu Aug 01 2019 Panagiotis Koutsourakis <kutsu...@monetdbsolutions.com> - 11.33.5-20190801 +- Rebuilt. +- BZ#6697: Duplicate expressions not eliminated with long CASE statement +- BZ#6701: When changing the schema name of a table, referencing rows + from sys.columns, sys.keys and more tables are not removed +- BZ#6703: SQL optimizer enters loop and goes into stack overflow +- BZ#6706: prepare doesn't recognize merge statement +- BZ#6712: Where clause with cast ignores sub-select +- BZ#6713: COPY INTO FROM 'file.xz' does not work +- BZ#6714: Assertion failure in rel_select.c for correlated subquery in + aggregation query (with group by and having and order by and limit) +- BZ#6715: Assertion failure in rel_bin.c for MERGE INTO command +- BZ#6716: COPY INTO does not load UTF8 encoded text +- BZ#6718: Can't copy table into another table with constraints + (mkey.bulk_rotate_xor_hash) +- BZ#6720: Compilation issues on gcc 9.1.1 [-Werror=stringop-truncation] +- BZ#6721: Possibly incorrect call to pcre_exec +- BZ#6725: Prepare statement on non-existing function crashes +- BZ#6728: SELECT DISTINCT not removing duplicates +- BZ#6729: Creating a table with duplicate column name should not + be possible +- BZ#6730: sys.stop or sys.pause a INSERT query triggers "BATproject: + does not match always" +- BZ#6736: Unexpected query result with merge tables and view after + upgrade +- BZ#6738: issue with window functions and hugeint type coercion + +* Mon Jul 15 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.5-20190801 +- gdk: We now look at the limits imposed by cgroups and the setrlimit system + call to initialize some internal values related to how much (virtual) + memory we think is available. + +* Fri Jul 12 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.5-20190801 +- buildtools: Removed restriction on using combinations of --enable-assert, + --enable-debug, and --enable-optimize. --enable-debug adds a -g (or + -even -g3) option, --enable-debug=gdb adds a -ggdb3 flag (for GCC); + --enable-optimize adds a bunch of optimization flags; --disable-debug + (or --enable-debug=no) removes any -g flags; --disable-optimize + removes any -O flags; --enable-optimize=auto leaves the optimization + flags untouched. + +* Fri Jun 7 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.5-20190801 +- sql: Changed the internal representation of RANGE MINVALUE and RANGE MAXVALUE + in MERGE TABLE partitions. Before, the limits were represented by + the smallest and largest value of the domain of the column, now these + are represented by a NULL value. This has the added benefit that if + you use TO RANGE MAXVALUE, the largest value of the domain is included + in the partition (before it wasn't). Also, these new limits now work + for any ordered type, so including VARCHAR. + * Fri Apr 26 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.3-20190426 - Rebuilt. - BZ#6647: Add suport to Python 3 on Windows diff --git a/buildtools/ChangeLog-Archive b/buildtools/ChangeLog-Archive --- a/buildtools/ChangeLog-Archive +++ b/buildtools/ChangeLog-Archive @@ -1,6 +1,15 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Fri Jul 12 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.5-20190801 +- Removed restriction on using combinations of --enable-assert, + --enable-debug, and --enable-optimize. --enable-debug adds a -g (or + -even -g3) option, --enable-debug=gdb adds a -ggdb3 flag (for GCC); + --enable-optimize adds a bunch of optimization flags; --disable-debug + (or --enable-debug=no) removes any -g flags; --disable-optimize + removes any -O flags; --enable-optimize=auto leaves the optimization + flags untouched. + * Tue Mar 19 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.1-20190405 - We now use the C11 atomic operations if available, although libatomic_ops is still used if present and not disabled on the configure diff --git a/buildtools/ChangeLog.Apr2019 b/buildtools/ChangeLog.Apr2019 --- a/buildtools/ChangeLog.Apr2019 +++ b/buildtools/ChangeLog.Apr2019 @@ -1,12 +1,3 @@ # ChangeLog file for buildtools # This file is updated with Maddlog -* Fri Jul 12 2019 Sjoerd Mullender <sjo...@acm.org> -- Removed restriction on using combinations of --enable-assert, - --enable-debug, and --enable-optimize. --enable-debug adds a -g (or - -even -g3) option, --enable-debug=gdb adds a -ggdb3 flag (for GCC); - --enable-optimize adds a bunch of optimization flags; --disable-debug - (or --enable-debug=no) removes any -g flags; --disable-optimize - removes any -O flags; --enable-optimize=auto leaves the optimization - flags untouched. - diff --git a/debian/changelog b/debian/changelog --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,65 @@ +monetdb (11.33.5) unstable; urgency=low + + * Rebuilt. + * BZ#6697: Duplicate expressions not eliminated with long CASE statement + * BZ#6701: When changing the schema name of a table, referencing rows + from sys.columns, sys.keys and more tables are not removed + * BZ#6703: SQL optimizer enters loop and goes into stack overflow + * BZ#6706: prepare doesn't recognize merge statement + * BZ#6712: Where clause with cast ignores sub-select + * BZ#6713: COPY INTO FROM 'file.xz' does not work + * BZ#6714: Assertion failure in rel_select.c for correlated subquery in + aggregation query (with group by and having and order by and limit) + * BZ#6715: Assertion failure in rel_bin.c for MERGE INTO command + * BZ#6716: COPY INTO does not load UTF8 encoded text + * BZ#6718: Can't copy table into another table with constraints + (mkey.bulk_rotate_xor_hash) + * BZ#6720: Compilation issues on gcc 9.1.1 [-Werror=stringop-truncation] + * BZ#6721: Possibly incorrect call to pcre_exec + * BZ#6725: Prepare statement on non-existing function crashes + * BZ#6728: SELECT DISTINCT not removing duplicates + * BZ#6729: Creating a table with duplicate column name should not + be possible + * BZ#6730: sys.stop or sys.pause a INSERT query triggers "BATproject: + does not match always" + * BZ#6736: Unexpected query result with merge tables and view after + upgrade + * BZ#6738: issue with window functions and hugeint type coercion + + -- Panagiotis Koutsourakis <kutsu...@monetdbsolutions.com> Thu, 01 Aug 2019 11:56:38 +0200 + +monetdb (11.33.5) unstable; urgency=low + + * gdk: We now look at the limits imposed by cgroups and the setrlimit system + call to initialize some internal values related to how much (virtual) + memory we think is available. + + -- Sjoerd Mullender <sjo...@acm.org> Mon, 15 Jul 2019 11:56:38 +0200 + +monetdb (11.33.5) unstable; urgency=low + + * buildtools: Removed restriction on using combinations of --enable-assert, + --enable-debug, and --enable-optimize. --enable-debug adds a -g (or + -even -g3) option, --enable-debug=gdb adds a -ggdb3 flag (for GCC); + --enable-optimize adds a bunch of optimization flags; --disable-debug + (or --enable-debug=no) removes any -g flags; --disable-optimize + removes any -O flags; --enable-optimize=auto leaves the optimization + flags untouched. + + -- Sjoerd Mullender <sjo...@acm.org> Fri, 12 Jul 2019 11:56:38 +0200 + +monetdb (11.33.5) unstable; urgency=low + + * sql: Changed the internal representation of RANGE MINVALUE and RANGE MAXVALUE + in MERGE TABLE partitions. Before, the limits were represented by + the smallest and largest value of the domain of the column, now these + are represented by a NULL value. This has the added benefit that if + you use TO RANGE MAXVALUE, the largest value of the domain is included + in the partition (before it wasn't). Also, these new limits now work + for any ordered type, so including VARCHAR. + + -- Sjoerd Mullender <sjo...@acm.org> Fri, 7 Jun 2019 11:56:38 +0200 + monetdb (11.33.3) unstable; urgency=low * Rebuilt. diff --git a/gdk/ChangeLog-Archive b/gdk/ChangeLog-Archive --- a/gdk/ChangeLog-Archive +++ b/gdk/ChangeLog-Archive @@ -1,6 +1,11 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Mon Jul 15 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.5-20190801 +- We now look at the limits imposed by cgroups and the setrlimit system + call to initialize some internal values related to how much (virtual) + memory we think is available. + * Tue Mar 19 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.1-20190405 - During processing, we now try to maintain the smallest and largest values that occur in a BAT. This information is not saved across diff --git a/gdk/ChangeLog.Apr2019 b/gdk/ChangeLog.Apr2019 --- a/gdk/ChangeLog.Apr2019 +++ b/gdk/ChangeLog.Apr2019 @@ -1,8 +1,3 @@ # ChangeLog file for MonetDB # This file is updated with Maddlog -* Mon Jul 15 2019 Sjoerd Mullender <sjo...@acm.org> -- We now look at the limits imposed by cgroups and the setrlimit system - call to initialize some internal values related to how much (virtual) - memory we think is available. - diff --git a/sql/ChangeLog-Archive b/sql/ChangeLog-Archive --- a/sql/ChangeLog-Archive +++ b/sql/ChangeLog-Archive @@ -1,6 +1,15 @@ # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY # This file contains past ChangeLog entries +* Fri Jun 7 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.5-20190801 +- Changed the internal representation of RANGE MINVALUE and RANGE MAXVALUE + in MERGE TABLE partitions. Before, the limits were represented by + the smallest and largest value of the domain of the column, now these + are represented by a NULL value. This has the added benefit that if + you use TO RANGE MAXVALUE, the largest value of the domain is included + in the partition (before it wasn't). Also, these new limits now work + for any ordered type, so including VARCHAR. + * Mon Jan 28 2019 Sjoerd Mullender <sjo...@acm.org> - 11.33.1-20190405 - Implemented two-argument least/greatest functions. If one argument is NULL, the functions return the other value, otherwise they return diff --git a/sql/ChangeLog.Apr2019 b/sql/ChangeLog.Apr2019 --- a/sql/ChangeLog.Apr2019 +++ b/sql/ChangeLog.Apr2019 @@ -1,12 +1,3 @@ # ChangeLog file for sql # This file is updated with Maddlog -* Fri Jun 7 2019 Sjoerd Mullender <sjo...@acm.org> -- Changed the internal representation of RANGE MINVALUE and RANGE MAXVALUE - in MERGE TABLE partitions. Before, the limits were represented by - the smallest and largest value of the domain of the column, now these - are represented by a NULL value. This has the added benefit that if - you use TO RANGE MAXVALUE, the largest value of the domain is included - in the partition (before it wasn't). Also, these new limits now work - for any ordered type, so including VARCHAR. - _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list