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

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


diffs (255 lines):

diff --git a/ChangeLog-Archive b/ChangeLog-Archive
--- a/ChangeLog-Archive
+++ b/ChangeLog-Archive
@@ -1,6 +1,9 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Wed Jan 12 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- A couple of concurrency issues have been fixed.
+
 * Mon Aug 10 2020 Ying Zhang <[email protected]> - 11.39.1-20201006
 - Finished a first version of the new monitoring function
   user_statistics(), which is only intended for the DBAs.
diff --git a/ChangeLog.Jan2022 b/ChangeLog.Jan2022
--- a/ChangeLog.Jan2022
+++ b/ChangeLog.Jan2022
@@ -1,6 +1,3 @@
 # ChangeLog file for devel
 # This file is updated with Maddlog
 
-* Wed Jan 12 2022 Sjoerd Mullender <[email protected]>
-- A couple of concurrency issues have been fixed.
-
diff --git a/MonetDB.spec b/MonetDB.spec
--- a/MonetDB.spec
+++ b/MonetDB.spec
@@ -850,6 +850,28 @@ fi
 %endif
 
 %changelog
+* Tue Jan 18 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- Rebuilt.
+
+* Thu Jan 13 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- NT: We now build Windows binaries using Visual Studio 2022.
+
+* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]> - 
11.43.5-20220118
+- gdk: Implement string imprints (strimps for short) a pre-filter structure
+  for strings in order to accelerate LIKE queries. If a strimp exists
+  for a specific string column the strings are pre-filtered, rejecting
+  strings that cannot possibly match, before the more expensive and
+  accurate matching algorithms run.
+
+* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]> - 
11.43.5-20220118
+- sql: Add string imprints to the existing imprints index creation syntax. On
+  string column "col" of a table "tbl" marked read only ("ALTER TABLE tbl
+  SET READ ONLY") the user can create a string imprint using the syntax:
+  "CREATE IMPRINTS INDEX index_name ON tbl(col);".
+
+* Wed Jan 12 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- MonetDB: A couple of concurrency issues have been fixed.
+
 * Tue Jan 11 2022 Sjoerd Mullender <[email protected]> - 11.43.3-20220111
 - Rebuilt.
 - GH#7215: ODBC Driver SQLStatistics returns duplicate rows/rows for other
diff --git a/NT/ChangeLog-Archive b/NT/ChangeLog-Archive
--- a/NT/ChangeLog-Archive
+++ b/NT/ChangeLog-Archive
@@ -1,6 +1,9 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Thu Jan 13 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- We now build Windows binaries using Visual Studio 2022.
+
 * Fri Apr 23 2021 Sjoerd Mullender <[email protected]> - 11.39.17-20210503
 - Added the monetdbe library to the Windows installer.
 
diff --git a/NT/ChangeLog.Jan2022 b/NT/ChangeLog.Jan2022
--- a/NT/ChangeLog.Jan2022
+++ b/NT/ChangeLog.Jan2022
@@ -1,6 +1,3 @@
 # ChangeLog file for NT
 # This file is updated with Maddlog
 
-* Thu Jan 13 2022 Sjoerd Mullender <[email protected]>
-- We now build Windows binaries using Visual Studio 2022.
-
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,40 @@
+monetdb (11.43.5) unstable; urgency=low
+
+  * Rebuilt.
+
+ -- Sjoerd Mullender <[email protected]>  Tue, 18 Jan 2022 10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * NT: We now build Windows binaries using Visual Studio 2022.
+
+ -- Sjoerd Mullender <[email protected]>  Thu, 13 Jan 2022 10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * gdk: Implement string imprints (strimps for short) a pre-filter structure
+    for strings in order to accelerate LIKE queries. If a strimp exists
+    for a specific string column the strings are pre-filtered, rejecting
+    strings that cannot possibly match, before the more expensive and
+    accurate matching algorithms run.
+
+ -- Panagiotis Koutsourakis <[email protected]>  Wed, 12 Jan 2022 
10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * sql: Add string imprints to the existing imprints index creation syntax. On
+    string column "col" of a table "tbl" marked read only ("ALTER TABLE tbl
+    SET READ ONLY") the user can create a string imprint using the syntax:
+    "CREATE IMPRINTS INDEX index_name ON tbl(col);".
+
+ -- Panagiotis Koutsourakis <[email protected]>  Wed, 12 Jan 2022 
10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * MonetDB: A couple of concurrency issues have been fixed.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 12 Jan 2022 10:05:33 +0100
+
 monetdb (11.43.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,13 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]> - 
11.43.5-20220118
+- Implement string imprints (strimps for short) a pre-filter structure
+  for strings in order to accelerate LIKE queries. If a strimp exists
+  for a specific string column the strings are pre-filtered, rejecting
+  strings that cannot possibly match, before the more expensive and
+  accurate matching algorithms run.
+
 * Tue Jan 11 2022 Sjoerd Mullender <[email protected]> - 11.43.3-20220111
 - On Windows, files and directories we create now get the attribute
   FILE_ATTIBUTE_NOT_CONTENT_INDEXED, meaning that they should not be
diff --git a/gdk/ChangeLog.Jan2022 b/gdk/ChangeLog.Jan2022
--- a/gdk/ChangeLog.Jan2022
+++ b/gdk/ChangeLog.Jan2022
@@ -1,10 +1,3 @@
 # ChangeLog file for GDK
 # This file is updated with Maddlog
 
-* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]>
-- Implement string imprints (strimps for short) a pre-filter structure
-  for strings in order to accelerate LIKE queries. If a strimp exists
-  for a specific string column the strings are pre-filtered, rejecting
-  strings that cannot possibly match, before the more expensive and
-  accurate matching algorithms run.
-
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,40 @@
+monetdb (11.43.5) unstable; urgency=low
+
+  * Rebuilt.
+
+ -- Sjoerd Mullender <[email protected]>  Tue, 18 Jan 2022 10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * NT: We now build Windows binaries using Visual Studio 2022.
+
+ -- Sjoerd Mullender <[email protected]>  Thu, 13 Jan 2022 10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * gdk: Implement string imprints (strimps for short) a pre-filter structure
+    for strings in order to accelerate LIKE queries. If a strimp exists
+    for a specific string column the strings are pre-filtered, rejecting
+    strings that cannot possibly match, before the more expensive and
+    accurate matching algorithms run.
+
+ -- Panagiotis Koutsourakis <[email protected]>  Wed, 12 Jan 2022 
10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * sql: Add string imprints to the existing imprints index creation syntax. On
+    string column "col" of a table "tbl" marked read only ("ALTER TABLE tbl
+    SET READ ONLY") the user can create a string imprint using the syntax:
+    "CREATE IMPRINTS INDEX index_name ON tbl(col);".
+
+ -- Panagiotis Koutsourakis <[email protected]>  Wed, 12 Jan 2022 
10:05:33 +0100
+
+monetdb (11.43.5) unstable; urgency=low
+
+  * MonetDB: A couple of concurrency issues have been fixed.
+
+ -- Sjoerd Mullender <[email protected]>  Wed, 12 Jan 2022 10:05:33 +0100
+
 monetdb (11.43.3) 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,25 @@
+* Tue Jan 18 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- Rebuilt.
+
+* Thu Jan 13 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- NT: We now build Windows binaries using Visual Studio 2022.
+
+* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]> - 
11.43.5-20220118
+- gdk: Implement string imprints (strimps for short) a pre-filter structure
+  for strings in order to accelerate LIKE queries. If a strimp exists
+  for a specific string column the strings are pre-filtered, rejecting
+  strings that cannot possibly match, before the more expensive and
+  accurate matching algorithms run.
+
+* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]> - 
11.43.5-20220118
+- sql: Add string imprints to the existing imprints index creation syntax. On
+  string column "col" of a table "tbl" marked read only ("ALTER TABLE tbl
+  SET READ ONLY") the user can create a string imprint using the syntax:
+  "CREATE IMPRINTS INDEX index_name ON tbl(col);".
+
+* Wed Jan 12 2022 Sjoerd Mullender <[email protected]> - 11.43.5-20220118
+- MonetDB: A couple of concurrency issues have been fixed.
+
 * Tue Jan 11 2022 Sjoerd Mullender <[email protected]> - 11.43.3-20220111
 - Rebuilt.
 - GH#7215: ODBC Driver SQLStatistics returns duplicate rows/rows for other
diff --git a/sql/ChangeLog-Archive b/sql/ChangeLog-Archive
--- a/sql/ChangeLog-Archive
+++ b/sql/ChangeLog-Archive
@@ -1,6 +1,12 @@
 # DO NOT EDIT THIS FILE -- MAINTAINED AUTOMATICALLY
 # This file contains past ChangeLog entries
 
+* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]> - 
11.43.5-20220118
+- Add string imprints to the existing imprints index creation syntax. On
+  string column "col" of a table "tbl" marked read only ("ALTER TABLE tbl
+  SET READ ONLY") the user can create a string imprint using the syntax:
+  "CREATE IMPRINTS INDEX index_name ON tbl(col);".
+
 * Wed Dec 15 2021 Pedro Ferreira <[email protected]> - 
11.43.1-20220103
 - With the storage cleanup in the 11.41.5 (Jul2021) release, the ANALYZE
   statement was updated to accomodate those changes. The SAMPLE parameter
diff --git a/sql/ChangeLog.Jan2022 b/sql/ChangeLog.Jan2022
--- a/sql/ChangeLog.Jan2022
+++ b/sql/ChangeLog.Jan2022
@@ -1,9 +1,3 @@
 # ChangeLog file for sql
 # This file is updated with Maddlog
 
-* Wed Jan 12 2022 Panagiotis Koutsourakis <[email protected]>
-- Add string imprints to the existing imprints index creation syntax. On
-  string column "col" of a table "tbl" marked read only ("ALTER TABLE tbl
-  SET READ ONLY") the user can create a string imprint using the syntax:
-  "CREATE IMPRINTS INDEX index_name ON tbl(col);".
-
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list

Reply via email to