diff --git a/CHANGELOG.md b/CHANGELOG.md index 7acc05ef327..bfe4ed6e768 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## ClickHouse release 19.3.5, 2019-02-21 + +### Bug fixes +* Fixed bug with large http insert queries processing. [#4454](https://github.com/yandex/ClickHouse/pull/4454) ([alesapin](https://github.com/alesapin)) +* Fixed backward incompatibility with old versions due to wrong implementation of `send_logs_level` setting. [#4445](https://github.com/yandex/ClickHouse/pull/4445) ([alexey-milovidov](https://github.com/alexey-milovidov)) +* Fixed backward incompatibility of table function `remote` introduced with column comments. [#4446](https://github.com/yandex/ClickHouse/pull/4446) ([alexey-milovidov](https://github.com/alexey-milovidov)) + ## ClickHouse release 19.3.4, 2019-02-16 ### Improvements @@ -116,6 +123,12 @@ * Improved server shutdown time and ALTERs waiting time. [#4372](https://github.com/yandex/ClickHouse/pull/4372) ([alexey-milovidov](https://github.com/alexey-milovidov)) * Added info about the replicated_can_become_leader setting to system.replicas and add logging if the replica won't try to become leader. [#4379](https://github.com/yandex/ClickHouse/pull/4379) ([Alex Zatelepin](https://github.com/ztlpn)) +## ClickHouse release 19.1.9, 2019-02-21 + +### Bug fixes +* Fixed backward incompatibility with old versions due to wrong implementation of `send_logs_level` setting. [#4445](https://github.com/yandex/ClickHouse/pull/4445) ([alexey-milovidov](https://github.com/alexey-milovidov)) +* Fixed backward incompatibility of table function `remote` introduced with column comments. [#4446](https://github.com/yandex/ClickHouse/pull/4446) ([alexey-milovidov](https://github.com/alexey-milovidov)) + ## ClickHouse release 19.1.8, 2019-02-16 ### Bug Fixes diff --git a/libs/libdaemon/src/BaseDaemon.cpp b/libs/libdaemon/src/BaseDaemon.cpp index eabf2531a41..ae5dfa85268 100644 --- a/libs/libdaemon/src/BaseDaemon.cpp +++ b/libs/libdaemon/src/BaseDaemon.cpp @@ -1045,15 +1045,10 @@ void BaseDaemon::initialize(Application & self) /// 1 GiB by default. If more - it writes to disk too long. rlim.rlim_cur = config().getUInt64("core_dump.size_limit", 1024 * 1024 * 1024); - if (setrlimit(RLIMIT_CORE, &rlim)) + if (rlim.rlim_cur && setrlimit(RLIMIT_CORE, &rlim)) { - std::string message = "Cannot set max size of core file to " + std::to_string(rlim.rlim_cur); - #if !defined(ADDRESS_SANITIZER) && !defined(THREAD_SANITIZER) && !defined(MEMORY_SANITIZER) && !defined(SANITIZER) && !defined(__APPLE__) - throw Poco::Exception(message); - #else /// It doesn't work under address/thread sanitizer. http://lists.llvm.org/pipermail/llvm-bugs/2013-April/027880.html - std::cerr << message << std::endl; - #endif + std::cerr << "Cannot set max size of core file to " + std::to_string(rlim.rlim_cur) << std::endl; } }