Changeset: 45c1a78db648 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/45c1a78db648 Modified Files: common/utils/mstring.h Branch: Jul2021 Log Message:
Merge with Oct2020 branch. diffs (45 lines): diff --git a/common/utils/mstring.h b/common/utils/mstring.h --- a/common/utils/mstring.h +++ b/common/utils/mstring.h @@ -35,7 +35,6 @@ strcpy_len(char *restrict dst, const cha * --enable-strict, so we just use the (more) expensive way of getting the * right answer (rescan the whole string) */ #if !defined(__GNUC__) || __GNUC__ > 7 || (__GNUC__ == 7 && __GNUC_MINOR__ > 5) -#if __GNUC__ < 11 /* This code is correct, but GCC gives a warning in certain * conditions, so we disable the warning temporarily. * The warning happens e.g. in @@ -51,7 +50,6 @@ GCC_Pragma("GCC diagnostic ignored \"-Wa return n + strlen(src + n); GCC_Pragma("GCC diagnostic pop") #endif -#endif } return strlen(src); } diff --git a/gdk/ChangeLog.Oct2020 b/gdk/ChangeLog.Oct2020 --- a/gdk/ChangeLog.Oct2020 +++ b/gdk/ChangeLog.Oct2020 @@ -1,3 +1,10 @@ # ChangeLog file for GDK # This file is updated with Maddlog +* Mon May 3 2021 Sjoerd Mullender <sjo...@acm.org> +- A bug that would very occasionally produce an error "strPut: incorrectly + encoded UTF-8", even when no incorrectly coded characters are used + at all, has been fixed. It was the result of a rare combination of + strings having been added to the column that caused essentially an + off-by-one type of error to occur. + diff --git a/sql/ChangeLog.Oct2020 b/sql/ChangeLog.Oct2020 --- a/sql/ChangeLog.Oct2020 +++ b/sql/ChangeLog.Oct2020 @@ -1,3 +1,8 @@ # ChangeLog file for sql # This file is updated with Maddlog +* Mon May 3 2021 Sjoerd Mullender <sjo...@acm.org> +- A bug where a sequence of TRUNCATE TABLE and COPY INTO the just + truncated table would result in success being reported to both queries, + but the table still being empty afterwards, has been fixed. + _______________________________________________ checkin-list mailing list checkin-list@monetdb.org https://www.monetdb.org/mailman/listinfo/checkin-list