Changeset: 438e505612e5 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/438e505612e5
Modified Files:
        MonetDB.spec
        cmake/monetdb-versions.cmake
Branch: default
Log Message:

Merge with Sep2022 branch.


diffs (299 lines):

diff --git a/.hgtags b/.hgtags
--- a/.hgtags
+++ b/.hgtags
@@ -779,3 +779,4 @@ 3191fee438036ac0da1e6f31481b9681399123b5
 bdd04053973daa8a786a30e07b2bf1bd8aa6ebf1 Jul2021_27
 bdd04053973daa8a786a30e07b2bf1bd8aa6ebf1 Jul2021_SP8_release
 688ff09b2edc3d637f658f3e7ef3d5f07e3e8f9c Sep2022_1
+ea797696d5e8d8d550f21f09b98d3bcade1d001d Sep2022_3
diff --git a/MonetDB.spec b/MonetDB.spec
--- a/MonetDB.spec
+++ b/MonetDB.spec
@@ -855,6 +855,30 @@ fi
 %endif
 
 %changelog
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- Rebuilt.
+
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- clients: Dumping of function GRANTs was improved by adding the types of the
+  function (and procedure) arguments.
+
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- sql: The function sys.tracelog is now executable by anyone.  The function
+  (and view of the same name) returns the tracing information of a query
+  that was prepended with the TRACE keyword.
+
+* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- gdk: Fixed a bug in ORDER BY with both NULLS LAST and LIMIT when the ordering
+  was on an interger or integer-like column and NULL values are present.
+
+* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- sql: Fixed a bug in COPY BINARY INTO where the input wasn't checked
+  thoroughly enough.
+
+* Tue Sep 13 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- gdk: The median_avg and quantile_avg returned bogus results in the
+  non-grouped case (i.e. something like SELECT sys.median_avg(i) FROM t).
+
 * Tue Sep 13 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.1-20220913
 - Rebuilt.
 - GH#6982: Wrong constraint name in error message of constraint violation
diff --git a/clients/ChangeLog-Archive b/clients/ChangeLog-Archive
--- a/clients/ChangeLog-Archive
+++ b/clients/ChangeLog-Archive
@@ -1,6 +1,10 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- Dumping of function GRANTs was improved by adding the types of the
+  function (and procedure) arguments.
+
 * Fri Jun 10 2022 Sjoerd Mullender <sjo...@acm.org> - 11.43.17-20220811
 - Implemented dump of global grants, that is to say, grants for COPY INTO
   and COPY FROM which grant permission to users to write to or read from
diff --git a/clients/ChangeLog.Sep2022 b/clients/ChangeLog.Sep2022
--- a/clients/ChangeLog.Sep2022
+++ b/clients/ChangeLog.Sep2022
@@ -1,7 +1,3 @@
 # ChangeLog file for clients
 # This file is updated with Maddlog
 
-* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org>
-- Dumping of function GRANTs was improved by adding the types of the
-  function (and procedure) arguments.
-
diff --git a/cmake/monetdb-versions.cmake b/cmake/monetdb-versions.cmake
--- a/cmake/monetdb-versions.cmake
+++ b/cmake/monetdb-versions.cmake
@@ -40,13 +40,13 @@ set(MONETDB_VERSION "${MONETDB_VERSION_M
 # common/options and common/utils)
 set(GDK_VERSION_MAJOR "26")
 set(GDK_VERSION_MINOR "0")
-set(GDK_VERSION_PATCH "0")
+set(GDK_VERSION_PATCH "1")
 set(GDK_VERSION 
"${GDK_VERSION_MAJOR}.${GDK_VERSION_MINOR}.${GDK_VERSION_PATCH}")
 
 # version of the MAPI library (subdirectory clients/mapilib)
 set(MAPI_VERSION_MAJOR "14")
 set(MAPI_VERSION_MINOR "0")
-set(MAPI_VERSION_PATCH "3")
+set(MAPI_VERSION_PATCH "4")
 set(MAPI_VERSION 
"${MAPI_VERSION_MAJOR}.${MAPI_VERSION_MINOR}.${MAPI_VERSION_PATCH}")
 
 # version of the MONETDB5 library (subdirectory monetdb5, not including extras 
or sql)
@@ -70,5 +70,5 @@ set(STREAM_VERSION "${STREAM_VERSION_MAJ
 # version of the SQL library (subdirectory sql)
 set(SQL_VERSION_MAJOR "13")
 set(SQL_VERSION_MINOR "0")
-set(SQL_VERSION_PATCH "0")
+set(SQL_VERSION_PATCH "1")
 set(SQL_VERSION 
"${SQL_VERSION_MAJOR}.${SQL_VERSION_MINOR}.${SQL_VERSION_PATCH}")
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,45 @@
+monetdb (11.45.3) unstable; urgency=low
+
+  * Rebuilt.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Wed, 21 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * clients: Dumping of function GRANTs was improved by adding the types of the
+    function (and procedure) arguments.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Wed, 21 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * sql: The function sys.tracelog is now executable by anyone.  The function
+    (and view of the same name) returns the tracing information of a query
+    that was prepended with the TRACE keyword.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Wed, 21 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * gdk: Fixed a bug in ORDER BY with both NULLS LAST and LIMIT when the 
ordering
+    was on an interger or integer-like column and NULL values are present.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Mon, 19 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * sql: Fixed a bug in COPY BINARY INTO where the input wasn't checked
+    thoroughly enough.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Mon, 19 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * gdk: The median_avg and quantile_avg returned bogus results in the
+    non-grouped case (i.e. something like SELECT sys.median_avg(i) FROM t).
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Tue, 13 Sep 2022 09:39:01 +0200
+
 monetdb (11.45.1) 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,14 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- Fixed a bug in ORDER BY with both NULLS LAST and LIMIT when the ordering
+  was on an interger or integer-like column and NULL values are present.
+
+* Wed Aug 24 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- The median_avg and quantile_avg returned bogus results in the
+  non-grouped case (i.e. something like SELECT sys.median_avg(i) FROM t).
+
 * Fri Jul 29 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.1-20220913
 - The abort_on_error parameter of all GDK-level functions has been removed.
   Errors (e.g. overflow) now also results in an error.
diff --git a/gdk/ChangeLog.Jan2022 b/gdk/ChangeLog.Jan2022
deleted file mode 100644
--- a/gdk/ChangeLog.Jan2022
+++ /dev/null
@@ -1,11 +0,0 @@
-# ChangeLog file for GDK
-# This file is updated with Maddlog
-
-* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org>
-- Fixed a bug in ORDER BY with both NULLS LAST and LIMIT when the ordering
-  was on an interger or integer-like column and NULL values are present.
-
-* Wed Aug 24 2022 Sjoerd Mullender <sjo...@acm.org>
-- The median_avg and quantile_avg returned bogus results in the
-  non-grouped case (i.e. something like SELECT sys.median_avg(i) FROM t).
-
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,45 @@
+monetdb (11.45.3) unstable; urgency=low
+
+  * Rebuilt.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Wed, 21 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * clients: Dumping of function GRANTs was improved by adding the types of the
+    function (and procedure) arguments.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Wed, 21 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * sql: The function sys.tracelog is now executable by anyone.  The function
+    (and view of the same name) returns the tracing information of a query
+    that was prepended with the TRACE keyword.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Wed, 21 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * gdk: Fixed a bug in ORDER BY with both NULLS LAST and LIMIT when the 
ordering
+    was on an interger or integer-like column and NULL values are present.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Mon, 19 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * sql: Fixed a bug in COPY BINARY INTO where the input wasn't checked
+    thoroughly enough.
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Mon, 19 Sep 2022 09:39:01 +0200
+
+monetdb (11.45.3) unstable; urgency=low
+
+  * gdk: The median_avg and quantile_avg returned bogus results in the
+    non-grouped case (i.e. something like SELECT sys.median_avg(i) FROM t).
+
+ -- Sjoerd Mullender <sjo...@acm.org>  Tue, 13 Sep 2022 09:39:01 +0200
+
 monetdb (11.45.1) 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,27 @@
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- Rebuilt.
+
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- clients: Dumping of function GRANTs was improved by adding the types of the
+  function (and procedure) arguments.
+
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- sql: The function sys.tracelog is now executable by anyone.  The function
+  (and view of the same name) returns the tracing information of a query
+  that was prepended with the TRACE keyword.
+
+* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- gdk: Fixed a bug in ORDER BY with both NULLS LAST and LIMIT when the ordering
+  was on an interger or integer-like column and NULL values are present.
+
+* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- sql: Fixed a bug in COPY BINARY INTO where the input wasn't checked
+  thoroughly enough.
+
+* Tue Sep 13 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- gdk: The median_avg and quantile_avg returned bogus results in the
+  non-grouped case (i.e. something like SELECT sys.median_avg(i) FROM t).
+
 * Tue Sep 13 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.1-20220913
 - Rebuilt.
 - GH#6982: Wrong constraint name in error message of constraint violation
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
 
+* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- The function sys.tracelog is now executable by anyone.  The function
+  (and view of the same name) returns the tracing information of a query
+  that was prepended with the TRACE keyword.
+
+* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org> - 11.45.3-20220921
+- Fixed a bug in COPY BINARY INTO where the input wasn't checked
+  thoroughly enough.
+
 * Fri Aug 26 2022 Lucas Pereira <lucas.pere...@monetdbsolutions.com> - 
11.45.1-20220913
 - Extended the built-in profiler to emit non-MAL events related to query
   compilation, optimization, transactions and client connections. To
diff --git a/sql/ChangeLog.Jan2022 b/sql/ChangeLog.Jan2022
deleted file mode 100644
--- a/sql/ChangeLog.Jan2022
+++ /dev/null
@@ -1,7 +0,0 @@
-# ChangeLog file for sql
-# This file is updated with Maddlog
-
-* Mon Sep 19 2022 Sjoerd Mullender <sjo...@acm.org>
-- Fixed a bug in COPY BINARY INTO where the input wasn't checked
-  thoroughly enough.
-
diff --git a/sql/ChangeLog.Sep2022 b/sql/ChangeLog.Sep2022
--- a/sql/ChangeLog.Sep2022
+++ b/sql/ChangeLog.Sep2022
@@ -1,8 +1,3 @@
 # ChangeLog file for sql
 # This file is updated with Maddlog
 
-* Wed Sep 21 2022 Sjoerd Mullender <sjo...@acm.org>
-- The function sys.tracelog is now executable by anyone.  The function
-  (and view of the same name) returns the tracing information of a query
-  that was prepended with the TRACE keyword.
-
_______________________________________________
checkin-list mailing list -- checkin-list@monetdb.org
To unsubscribe send an email to checkin-list-le...@monetdb.org

Reply via email to