Changeset: 49dcf412e1b7 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=49dcf412e1b7 Modified Files: .hgtags MonetDB.spec debian/changelog libversions sql/ChangeLog-Archive sql/ChangeLog.Apr2019 Branch: default Log Message:
Merge with Apr2019 branch. diffs (109 lines): diff --git a/.hgtags b/.hgtags --- a/.hgtags +++ b/.hgtags @@ -730,3 +730,6 @@ 2366418b3d88b268117a6f981638c4da686497aa 02147798590c5f9d7c837bec07277313c1fa29cc Apr2019_7 2366418b3d88b268117a6f981638c4da686497aa Apr2019_SP1_release 02147798590c5f9d7c837bec07277313c1fa29cc Apr2019_SP1_release +a6674f7048a13fe7dc53995a4f723d33a34bce23 Apr2019_9 +02147798590c5f9d7c837bec07277313c1fa29cc Apr2019_SP1_release +a6674f7048a13fe7dc53995a4f723d33a34bce23 Apr2019_SP1_release diff --git a/MonetDB.spec b/MonetDB.spec --- a/MonetDB.spec +++ b/MonetDB.spec @@ -1061,6 +1061,21 @@ done %postun -p /sbin/ldconfig %changelog +* Tue Aug 20 2019 Sjoerd Mullender <[email protected]> - 11.33.9-20190820 +- Rebuilt. +- BZ#6571: Jdbc connection hangs +- BZ#6693: mix of long and short queries make JDBC-driver hang +- BZ#6741: report no such table when execute “alter table tb1 rename + to tb2” according to using mapi +- BZ#6744: CREATE SEQUENCE seq; fails +- BZ#6748: MonetDB "forgets" columns after ALTER TABLE statements +- BZ#6751: ODBC driver(11.33.3) Seg Faults when "fn ucase" is used in SQL + +* Tue Aug 20 2019 Sjoerd Mullender <[email protected]> - 11.33.9-20190820 +- sql: Many fixes for using the server in a highly concurrent setting with + many clients doing read-only queries mixed with clients doing updating + queries. + * Wed Aug 07 2019 Panagiotis Koutsourakis <[email protected]> - 11.33.7-20190807 - Rebuilt. diff --git a/debian/changelog b/debian/changelog --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,24 @@ +monetdb (11.33.9) unstable; urgency=low + + * Rebuilt. + * BZ#6571: Jdbc connection hangs + * BZ#6693: mix of long and short queries make JDBC-driver hang + * BZ#6741: report no such table when execute “alter table tb1 rename + to tb2” according to using mapi + * BZ#6744: CREATE SEQUENCE seq; fails + * BZ#6748: MonetDB "forgets" columns after ALTER TABLE statements + * BZ#6751: ODBC driver(11.33.3) Seg Faults when "fn ucase" is used in SQL + + -- Sjoerd Mullender <[email protected]> Tue, 20 Aug 2019 13:39:03 +0200 + +monetdb (11.33.9) unstable; urgency=low + + * sql: Many fixes for using the server in a highly concurrent setting with + many clients doing read-only queries mixed with clients doing updating + queries. + + -- Sjoerd Mullender <[email protected]> Tue, 20 Aug 2019 13:39:03 +0200 + monetdb (11.33.7) unstable; urgency=low * Rebuilt. diff --git a/libversions b/libversions --- a/libversions +++ b/libversions @@ -36,13 +36,13 @@ # version of the GDK library (subdirectory gdk; also includes # common/options and common/utils) -GDK_VERSION=18:2:0 +GDK_VERSION=18:3:0 # version of the MAPI library (subdirectory clients/mapilib) MAPI_VERSION=12:1:0 # version of the MONETDB5 library (subdirectory monetdb5, not including extras or sql) -MONETDB5_VERSION=27:2:0 +MONETDB5_VERSION=27:3:0 # version of the STREAM library (subdirectory common/stream) STREAM_VERSION=13:2:0 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 Aug 20 2019 Sjoerd Mullender <[email protected]> - 11.33.9-20190820 +- Many fixes for using the server in a highly concurrent setting with + many clients doing read-only queries mixed with clients doing updating + queries. + * Fri Jun 7 2019 Sjoerd Mullender <[email protected]> - 11.33.5-20190801 - Changed the internal representation of RANGE MINVALUE and RANGE MAXVALUE in MERGE TABLE partitions. Before, the limits were represented by diff --git a/sql/ChangeLog.Apr2019 b/sql/ChangeLog.Apr2019 --- a/sql/ChangeLog.Apr2019 +++ b/sql/ChangeLog.Apr2019 @@ -1,8 +1,3 @@ # ChangeLog file for sql # This file is updated with Maddlog -* Tue Aug 20 2019 Sjoerd Mullender <[email protected]> -- Many fixes for using the server in a highly concurrent setting with - many clients doing read-only queries mixed with clients doing updating - queries. - _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
