Changeset: ceade6259153 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/ceade6259153
Modified Files:
        MonetDB.spec
        debian/changelog
        gdk/ChangeLog-Archive
        gdk/ChangeLog.Jul2021
        misc/packages/deb/changelog
        misc/packages/rpm/changelog
        sql/ChangeLog-Archive
        sql/ChangeLog.Jul2021
Branch: Jul2021
Log Message:

Moved contents of ChangeLog.Jul2021 to MonetDB.spec, debian/changelog and 
ChangeLog-Archive.


diffs (truncated from 414 to 300 lines):

diff --git a/MonetDB.spec b/MonetDB.spec
--- a/MonetDB.spec
+++ b/MonetDB.spec
@@ -84,7 +84,7 @@ Group: Applications/Databases
 License: MPLv2.0
 URL: https://www.monetdb.org/
 BugURL: https://bugs.monetdb.org/
-Source: 
https://www.monetdb.org/downloads/sources/Jul2021/%{name}-%{version}.tar.bz2
+Source: 
https://www.monetdb.org/downloads/sources/Jul2021-SP1/%{name}-%{version}.tar.bz2
 
 # The Fedora packaging document says we need systemd-rpm-macros for
 # the _unitdir and _tmpfilesdir macros to exist; however on RHEL 7
@@ -846,6 +846,61 @@ else
 fi
 
 %changelog
+* Mon Sep 27 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- Rebuilt.
+- GH#7140: SQL Query Plan Non Optimal with View
+- GH#7162: Extend sys.var_values table
+- GH#7165: `JOINIDX: missing '.'` when running distributed join query on
+  merged remote tables
+- GH#7172: Unexpected query result with merge tables
+- GH#7173: If truncate is in transaction then after restart of MonetDB the
+  table is empty
+- GH#7178: Remote Table Throws Error - createExceptionInternal: !ERROR:
+  SQLException:RAstatement2:42000!The number of projections don't match
+  between the generated plan and the expected one: 1 != 1200
+
+* Wed Sep 22 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- gdk: Some deadlock and race condition issues were fixed.
+- gdk: Handling of the list of free bats has been improved, leading to less
+  thread contention.
+- gdk: A problem was fixed where the server wouldn't start with a message from
+  BBPcheckbats about files being too small.  The issue was not that the
+  file was too small, but that BBPcheckbats was looking at the wrong file.
+- gdk: An issue was fixed where a "short read" error was produced when memory
+  was getting tight.
+
+* Wed Sep 22 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- sql: If the server has been idle for a while with no active clients, the
+  write-ahead log is now rotated.
+- sql: A problem was fixed where files belonging to bats that had been deleted
+  internally were not cleaned up, leading to a growing database (dbfarm)
+  directory.
+- sql: A leak was fixed where extra bats were created but never cleaned up,
+  each taking up several kilobytes of memory.
+
+* Tue Aug 17 2021 Ying Zhang <[email protected]> - 11.41.7-20210927
+- sql: [This feature was already released in Jul2021 (11.41.5), but the 
ChangeLog was missing]
+  Grant indirect privileges.  With "GRANT SELECT ON <my_view> TO
+  <another_user>"  and "GRANT EXECUTE ON FUNCTION <my_func> TO
+  <another_user>", one can grant access to "my_view" and "my_func"
+  to another user who does not have access to the underlying database
+  objects (e.g. tables, views) used in "my_view" and "my_func".  The
+  grantee will only be able to access data revealed by "my_view" or
+  conduct operations provided by "my_func".
+
+* Mon Aug 16 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- sql: Improved error reporting in COPY INTO by giving the line number
+  (starting with one) for the row in which an error was found.  In
+  particular, the sys.rejects() table now lists the line number of the
+  CSV file on which the record started in which an error was found.
+
+* Wed Aug 11 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- gdk: When appending to a string bat, we made an optimization where the string
+  heap was sometimes copied completely to avoid having to insert strings
+  individually.  This copying was still done too eagerly, so now the
+  string heap is copied less frequently.  In particular, when appending
+  to an empty bat, the string heap is now not always copied whole.
+
 * Tue Aug 03 2021 Sjoerd Mullender <[email protected]> - 11.41.5-20210803
 - Rebuilt.
 - GH#7161: fix priority
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,76 @@
+monetdb (11.41.7) unstable; urgency=low
+
+  * Rebuilt.
+  * GH#7140: SQL Query Plan Non Optimal with View
+  * GH#7162: Extend sys.var_values table
+  * GH#7165: `JOINIDX: missing '.'` when running distributed join query on
+    merged remote tables
+  * GH#7172: Unexpected query result with merge tables
+  * GH#7173: If truncate is in transaction then after restart of MonetDB the
+    table is empty
+  * GH#7178: Remote Table Throws Error - createExceptionInternal: !ERROR:
+    SQLException:RAstatement2:42000!The number of projections don't match
+    between the generated plan and the expected one: 1 != 1200
+
+ -- Sjoerd Mullender <[email protected]>  Mon, 27 Sep 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * gdk: Some deadlock and race condition issues were fixed.
+  * gdk: Handling of the list of free bats has been improved, leading to less
+    thread contention.
+  * gdk: A problem was fixed where the server wouldn't start with a message 
from
+    BBPcheckbats about files being too small.  The issue was not that the
+    file was too small, but that BBPcheckbats was looking at the wrong file.
+  * gdk: An issue was fixed where a "short read" error was produced when memory
+    was getting tight.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 22 Sep 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * sql: If the server has been idle for a while with no active clients, the
+    write-ahead log is now rotated.
+  * sql: A problem was fixed where files belonging to bats that had been 
deleted
+    internally were not cleaned up, leading to a growing database (dbfarm)
+    directory.
+  * sql: A leak was fixed where extra bats were created but never cleaned up,
+    each taking up several kilobytes of memory.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 22 Sep 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * sql: [This feature was already released in Jul2021 (11.41.5), but the 
ChangeLog was missing]
+    Grant indirect privileges.  With "GRANT SELECT ON <my_view> TO
+    <another_user>"  and "GRANT EXECUTE ON FUNCTION <my_func> TO
+    <another_user>", one can grant access to "my_view" and "my_func"
+    to another user who does not have access to the underlying database
+    objects (e.g. tables, views) used in "my_view" and "my_func".  The
+    grantee will only be able to access data revealed by "my_view" or
+    conduct operations provided by "my_func".
+
+ -- Ying Zhang <[email protected]>  Tue, 17 Aug 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * sql: Improved error reporting in COPY INTO by giving the line number
+    (starting with one) for the row in which an error was found.  In
+    particular, the sys.rejects() table now lists the line number of the
+    CSV file on which the record started in which an error was found.
+
+ -- Sjoerd Mullender <[email protected]>  Mon, 16 Aug 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * gdk: When appending to a string bat, we made an optimization where the 
string
+    heap was sometimes copied completely to avoid having to insert strings
+    individually.  This copying was still done too eagerly, so now the
+    string heap is copied less frequently.  In particular, when appending
+    to an empty bat, the string heap is now not always copied whole.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 11 Aug 2021 11:24:40 +0200
+
 monetdb (11.41.5) 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,23 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Wed Sep 22 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- Some deadlock and race condition issues were fixed.
+- Handling of the list of free bats has been improved, leading to less
+  thread contention.
+- A problem was fixed where the server wouldn't start with a message from
+  BBPcheckbats about files being too small.  The issue was not that the
+  file was too small, but that BBPcheckbats was looking at the wrong file.
+- An issue was fixed where a "short read" error was produced when memory
+  was getting tight.
+
+* Wed Aug 11 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- When appending to a string bat, we made an optimization where the string
+  heap was sometimes copied completely to avoid having to insert strings
+  individually.  This copying was still done too eagerly, so now the
+  string heap is copied less frequently.  In particular, when appending
+  to an empty bat, the string heap is now not always copied whole.
+
 * Tue Aug  3 2021 Sjoerd Mullender <[email protected]> - 11.41.5-20210803
 - A bug in the grouping code has been fixed.
 
diff --git a/gdk/ChangeLog.Jul2021 b/gdk/ChangeLog.Jul2021
--- a/gdk/ChangeLog.Jul2021
+++ b/gdk/ChangeLog.Jul2021
@@ -1,20 +1,3 @@
 # ChangeLog file for GDK
 # This file is updated with Maddlog
 
-* Wed Sep 22 2021 Sjoerd Mullender <[email protected]>
-- Some deadlock and race condition issues were fixed.
-- Handling of the list of free bats has been improved, leading to less
-  thread contention.
-- A problem was fixed where the server wouldn't start with a message from
-  BBPcheckbats about files being too small.  The issue was not that the
-  file was too small, but that BBPcheckbats was looking at the wrong file.
-- An issue was fixed where a "short read" error was produced when memory
-  was getting tight.
-
-* Wed Aug 11 2021 Sjoerd Mullender <[email protected]>
-- When appending to a string bat, we made an optimization where the string
-  heap was sometimes copied completely to avoid having to insert strings
-  individually.  This copying was still done too eagerly, so now the
-  string heap is copied less frequently.  In particular, when appending
-  to an empty bat, the string heap is now not always copied whole.
-
diff --git a/misc/packages/deb/changelog b/misc/packages/deb/changelog
--- a/misc/packages/deb/changelog
+++ b/misc/packages/deb/changelog
@@ -1,3 +1,76 @@
+monetdb (11.41.7) unstable; urgency=low
+
+  * Rebuilt.
+  * GH#7140: SQL Query Plan Non Optimal with View
+  * GH#7162: Extend sys.var_values table
+  * GH#7165: `JOINIDX: missing '.'` when running distributed join query on
+    merged remote tables
+  * GH#7172: Unexpected query result with merge tables
+  * GH#7173: If truncate is in transaction then after restart of MonetDB the
+    table is empty
+  * GH#7178: Remote Table Throws Error - createExceptionInternal: !ERROR:
+    SQLException:RAstatement2:42000!The number of projections don't match
+    between the generated plan and the expected one: 1 != 1200
+
+ -- Sjoerd Mullender <[email protected]>  Mon, 27 Sep 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * gdk: Some deadlock and race condition issues were fixed.
+  * gdk: Handling of the list of free bats has been improved, leading to less
+    thread contention.
+  * gdk: A problem was fixed where the server wouldn't start with a message 
from
+    BBPcheckbats about files being too small.  The issue was not that the
+    file was too small, but that BBPcheckbats was looking at the wrong file.
+  * gdk: An issue was fixed where a "short read" error was produced when memory
+    was getting tight.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 22 Sep 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * sql: If the server has been idle for a while with no active clients, the
+    write-ahead log is now rotated.
+  * sql: A problem was fixed where files belonging to bats that had been 
deleted
+    internally were not cleaned up, leading to a growing database (dbfarm)
+    directory.
+  * sql: A leak was fixed where extra bats were created but never cleaned up,
+    each taking up several kilobytes of memory.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 22 Sep 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * sql: [This feature was already released in Jul2021 (11.41.5), but the 
ChangeLog was missing]
+    Grant indirect privileges.  With "GRANT SELECT ON <my_view> TO
+    <another_user>"  and "GRANT EXECUTE ON FUNCTION <my_func> TO
+    <another_user>", one can grant access to "my_view" and "my_func"
+    to another user who does not have access to the underlying database
+    objects (e.g. tables, views) used in "my_view" and "my_func".  The
+    grantee will only be able to access data revealed by "my_view" or
+    conduct operations provided by "my_func".
+
+ -- Ying Zhang <[email protected]>  Tue, 17 Aug 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * sql: Improved error reporting in COPY INTO by giving the line number
+    (starting with one) for the row in which an error was found.  In
+    particular, the sys.rejects() table now lists the line number of the
+    CSV file on which the record started in which an error was found.
+
+ -- Sjoerd Mullender <[email protected]>  Mon, 16 Aug 2021 11:24:40 +0200
+
+monetdb (11.41.7) unstable; urgency=low
+
+  * gdk: When appending to a string bat, we made an optimization where the 
string
+    heap was sometimes copied completely to avoid having to insert strings
+    individually.  This copying was still done too eagerly, so now the
+    string heap is copied less frequently.  In particular, when appending
+    to an empty bat, the string heap is now not always copied whole.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 11 Aug 2021 11:24:40 +0200
+
 monetdb (11.41.5) unstable; urgency=low
 
   * Rebuilt.
diff --git a/misc/packages/rpm/changelog b/misc/packages/rpm/changelog
--- a/misc/packages/rpm/changelog
+++ b/misc/packages/rpm/changelog
@@ -1,3 +1,58 @@
+* Mon Sep 27 2021 Sjoerd Mullender <[email protected]> - 11.41.7-20210927
+- Rebuilt.
+- GH#7140: SQL Query Plan Non Optimal with View
+- GH#7162: Extend sys.var_values table
+- GH#7165: `JOINIDX: missing '.'` when running distributed join query on
+  merged remote tables
+- GH#7172: Unexpected query result with merge tables
+- GH#7173: If truncate is in transaction then after restart of MonetDB the
+  table is empty
+- GH#7178: Remote Table Throws Error - createExceptionInternal: !ERROR:
+  SQLException:RAstatement2:42000!The number of projections don't match
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to