mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-09 17:14:47 +00:00
80 KiB
80 KiB
sidebar_position | sidebar_label |
---|---|
1 | 2022 |
2022 Changelog
ClickHouse release v21.11.1.8636-prestable FIXME as compared to v21.10.1.8013-prestable
Backward Incompatible Change
- Now ClickHouse Keeper snapshots compressed with
ZSTD
codec by default instead of custom ClickHouse LZ4 block compression. This behavior can be turned off withcompress_snapshots_with_zstd_format
coordination setting (must be equal on all quorum replicas). Backward incompatibility is quite rare and may happen only when new node will send snapshot (happens in case of recovery) to the old node which is unable to read snapshots in ZSTD format. #29417 (alesapin). - Function
bayesAB
is removed. This closes #26233. #29934 (Alexey Milovidov). - Remove MergeTree table setting
write_final_mark
. It will be alwaystrue
. #30455 (Kseniia Sumarokova). - Change order of json_path and json in sql json function (to be correct). Closes #30449. #30474 (Kseniia Sumarokova).
- Remove setting odbc_max_field_size because it is not used anymore. Closes #30413. #30778 (Kseniia Sumarokova).
New Feature
- Add CapnProto output format, refactor CapnProto input format. #29291 (Kruglov Pavel).
- clickhouse-format support option
--query
. #29325 (凌涛). - Users now can set comments to database in
CREATE DATABASE
statement ... #29429 (Vasily Nemkov). - New function
mapContainsKeyLike
to get the map that key matches a simple regular expression. #29471 (凌涛). - Huawei OBS Storage support. Closes #24294. #29511 (kevin wan).
- Clickhouse HTTP Server can enable HSTS by set
hsts_max_age
in config.xml with a positive number. #29516 (凌涛). -
- Added MD4 and SHA384 functions. #29602 (Nikita Tikhomirov).
- Support EXISTS(subquery). Closes #6852. #29731 (Kseniia Sumarokova).
- Added function
ngram
. Closes #29699. #29738 (Maksim Kita). - Returns String with OS Kernel version. #29755 (Memo).
- Predefined configuration for table function remote. Closes #29756. #29774 (Kseniia Sumarokova).
- Add
table
alias to system.tables anddatabase
alias to system.databases #29677. #29882 (kevin wan). - Added columns
data_compressed_bytes
,data_uncompressed_bytes
,marks_bytes
intosystem.data_skipping_indices
. Added columnssecondary_indices_compressed_bytes
,secondary_indices_uncompressed_bytes
,secondary_indices_marks_bytes
intosystem.parts
. Closes #29697. #29896 (Maksim Kita). - User can now create dictionaries with comments:
CREATE DICTIONARY ... COMMENT 'vaue'
... #29899 (Vasily Nemkov). - Add support for FreeBSD aarch64. #29952 (MikaelUrankar).
- Added function
tokens
. That allow to split string into tokens using non-alpha numeric ASCII characters as separators. #29981 (Maksim Kita). - Added new JSONExtractKeys function ... #30056 (Vitaly Orlov).
- Added
HashedArray
dictionary type. Closes #30236. #30242 (Maksim Kita). - Add ability to change nodes configuration (in
.xml
file) for ClickHouse Keeper. #30372 (alesapin). - CompiledExpressionCache limit elements size using
compiled_expression_cache_elements_size
setting. #30667 (Maksim Kita). - New function
mapExtractKeyLike
to get the map only kept elements matched specified pattern. #30793 (凌涛). - Support
ALTER TABLE
for tables inMemory
databases. #30866 (Alexander Tokmakov).
Performance Improvement
- Improve performance of aggregation in order of primary key (with enabled setting
optimize_aggregation_in_order
). #30266 (Anton Popov). - ColumnDecimal improve performance for filter operation. #30431 (Jun Jin).
- Dictionaries support read from multiple threads. #30500 (Maksim Kita).
- Queries with
INTO OUTFILE
inclickhouse-client
will use multiple threads. Fix the issue with flickering progress-bar when usingINTO OUTFILE
. This closes #30873. This closes #30872. #30886 (Alexey Milovidov).
Improvement
- Allow to write number in query as binary literal. Example
SELECT 0b001;
. #29304 (Maksim Kita). - Pass through initial query_id for clickhouse-benchmark (previously if you run remote query via
clickhouse-benchmark
, queries on shards will not be linked to the initial query viainitial_query_id
). #29364 (Azat Khuzhin). - fix lost in memory part when freeze. #29376 (Mo Xuan).
- Added setting
use_skip_indexes
. #29405 (Maksim Kita). - Apply config changes to
max_concurrent_queries
during runtime (no need to restart). #29414 (Raúl Marín). - Transform
isNull
/isNotNull
toIS NULL
/IS NOT NULL
(for external dbs, i.e. MySQL). #29446 (Azat Khuzhin). - Enable per-query memory profiler (set to memory_profiler_step=4MiB) globally. #29455 (Azat Khuzhin).
- Add support for
IS NULL
/IS NOT NULL
for external dbs (i.e. MySQL). #29463 (Azat Khuzhin). - Fixed
There is no query or query context has expired
error in mutations with nested subqueries. Do not allow subqueries in mutation if table is replicated andallow_nondeterministic_mutations
setting is disabled. #29495 (Alexander Tokmakov). - Get rid of pointless restriction on projection name. Now projection name can start with
tmp_
. #29520 (Amos Bird). - Reload dictionaries, models, user defined executable functions if servers config
dictionaries_config
,models_config
,user_defined_executable_functions_config
changes. Closes #28142. #29529 (Maksim Kita). - Allow user to change log levels without restart. #29586 (Nikolay Degterinsky).
- Increase
listen_backlog
by default (to match default in newer linux kernel). #29643 (Azat Khuzhin). - Fix incorrect nullable processing of JSONFunctions. This fixes #29615 . Mark as improvement because https://github.com/ClickHouse/ClickHouse/pull/28012 is not released. #29659 (Amos Bird).
- Fixed the issue:
clickhouse-format --obfuscate
cannot process queries with embedded dictionaries (functionsregionTo...
). #29667 (Alexey Milovidov). - Query obfuscator
clickhouse-format --obfuscate
now works with more types of queries. #29672 (Alexey Milovidov). - Make
url
table function to process multiple URLs in parallel. This closes #29670 and closes #29671. #29673 (Alexey Milovidov). - Add ClickHouse logo to Play UI. #29674 (Alexey Milovidov).
- Apply
max_untracked_memory
/memory_profiler_step
/memory_profiler_sample_probability
during mutate/merge. #29681 (Azat Khuzhin). - Remove some redundant
seek
calls while reading compressed blocks in MergeTree table engines family. #29766 (alesapin). - Web UI: render bars in table cells. #29792 (Alexey Milovidov).
- Added partitioned table prefix 'p' for the query for fetching replica identity index. #29828 (Shoh Jahon).
- Add ability to trace peak memory usage (with new trace_type - MemoryPeak). #29858 (Azat Khuzhin).
- Remove unused variable in s3cluster. #29912 (李扬).
- Add
shutdown_wait_unfinished_queries
server setting to allowing waiting for running queries up toshutdown_wait_unfinished
time. This is for #24451 . #29914 (Amos Bird). - Now min-max aggregation over the first expression of primary key is optimized by projection. This is for https://github.com/ClickHouse/ClickHouse/issues/329. #29918 (Amos Bird).
- Add ability to configure retries and delays between them for
clickhouse-copier
. #29921 (Azat Khuzhin). - Update zoneinfo files to 2021c. #29925 (Alexey Milovidov).
- Better exception message while reading column from Arrow-supported formats like
Arrow
,ArrowStream
,Parquet
andORC
. This closes #29926. #29927 (Alexey Milovidov). - Fix lock-order-inversion between periodic dictionary reload and config reload. #29928 (Azat Khuzhin).
- Fix
lock-order-inversion
betweenDROP TABLE
forDatabaseMemory
andLiveView
. #29929 (Azat Khuzhin). - Fix data-race between flush() and startup() in StorageBuffer. #29930 (Azat Khuzhin).
- Now clickhouse use DNS cache while communicating with external S3. #29999 (alesapin).
- ProfileEvents::Counters snapshot doesn't store data in std::atomic anymore. #30000 (Dmitry Novik).
- Add ability to print raw profile events to
clickhouse-client
(This can be useful for debugging and for testing). #30064 (Azat Khuzhin). - Improve solution https://github.com/ClickHouse/ClickHouse/pull/28853 See also https://github.com/ClickHouse/ClickHouse/pull/29928. #30084 (Vitaly Baranov).
- Reduce amount of redundant compressed data read from disk for some types
SELECT
queries (only for MergeTree engines family). #30111 (alesapin). - PolygonDictionary added support for read method if setting
store_polygon_key_column
= true. Closes #30090. #30142 (Maksim Kita). - Now clickhouse-client supports native multi-line editing. #30143 (Amos Bird).
- Now
Keeper
(as part ofclickhouse-server
) will start asynchronously if it can connect to some other node. #30170 (alesapin). - Support SQL user defined functions for clickhouse-local. #30179 (Maksim Kita).
- Allow to remove
SAMPLE BY
expression fromMergeTree
tables (ALTER TABLE <table> REMOVE SAMPLE BY
). #30180 (Anton Popov). - Fixed comparison of Date32 with Date, DateTime, DateTime64, String. #30219 (liang.huang).
- Allow symlinks to files in user_files directory for file table function. #30309 (Kseniia Sumarokova).
- Minor improvements in replica cloning and enqueuing fetch for broken parts, that should avoid extremely rare hanging of
GET_PART
entries in replication queue. #30346 (Alexander Tokmakov). - Added an ability to use FINAL clause in SELECT queries from GraphiteMergeTree. #30360 (Nikita Mikhaylov).
- Allow extract non-string element as string using JSONExtractString. This is for https://github.com/ClickHouse/ClickHouse/pull/25452#issuecomment-927123287. #30426 (Amos Bird).
- More full support of positional arguments. #30433 (Kseniia Sumarokova).
- SQLUserDefinedFunctions support lambdas. Example
CREATE FUNCTION lambda_function AS x -> arrayMap(element -> element * 2, x);
. #30435 (Maksim Kita). - SQLUserDefinedFunctions added DROP IF EXISTS support. Example
DROP FUNCTION IF EXISTS test_function
. #30437 (Maksim Kita). - SQLUserDefinedFunctions support
CREATE OR REPLACE
,CREATE IF NOT EXISTS
syntaxes. #30454 (Maksim Kita). - Make query, which fetched table structure for PostgreSQL database because, more reliable. #30477 (Kseniia Sumarokova).
- Get memory amount with Docker/cgroups limitations. See #25662. #30574 (Pavel Medvedev).
- SQLUserDefinedFunctions support ON CLUSTER. Example
CREATE FUNCTION test_function ON CLUSTER 'cluster' AS x -> x + 1;
. Closes #30666. #30734 (Maksim Kita). - Arrays of all serializable types are now supported by arrayStringConcat. #30840 (Nikita Taranov).
- Allow to parse values of
Date
data type in text formats asYYYYMMDD
in addition toYYYY-MM-DD
. This closes #30870. #30871 (Alexey Milovidov). - Rename the columns of SessionLog:
session_id
->auth_id
,session_name
->session_id
,changed_settings
->settings
. #30882 (Vitaly Baranov).
Bug Fix
- Fix shutdown of
AccessControlManager
. Now there can't be reloading of the configuration after AccessControlManager has been destroyed. This PR fixes the flaky test test_user_directories/test.py::test_relative_path. #29951 (Vitaly Baranov). - Fix releasing query ID and session ID at the end of query processing while handing gRPC call. This PR fixes flaky test test_grpc_protocol/test.py::test_session. #29954 (Vitaly Baranov).
- Fix reading from empty file on encrypted disk. #30494 (Vitaly Baranov).
Build/Testing/Packaging Improvement
- N/A Detailed description / Documentation draft:. #29367 (kevin wan).
- Add ability to compile using newer version fo glibc w/o using new symbols. #29594 (Azat Khuzhin).
- Turning on experimental constexpr expressions evaluator for clang to speed up template code compilation. #29668 (Mike Kot).
- Fix an build error because of Rename "common" to "base". #29688 (Sergei Semin).
- Leave only required files in cross-compile toolchains. Include them as submodules (earlier they were downloaded as tarballs). #29974 (Alexey Milovidov).
- Add cross-build for PowerPC (powerpc64le). This closes #9589. Enable support for interaction with MySQL for AArch64 and PowerPC. This closes #26301. #30010 (Alexey Milovidov).
- Enable Protobuf, Arrow, ORC, Parquet for AArch64 and Darwin builds. This closes #29248. This closes #28018. #30015 (Alexey Milovidov).
- Add tests for encrypted disk & encryption codec and ReplicatedMergeTree. #30172 (Vitaly Baranov).
- ClickHouse can be statically built with Musl. This is added as experiment, it does not support building
odbc-bridge
,library-bridge
, integration with CatBoost and some libraries. #30248 (Alexey Milovidov). - Recursive submodules are no longer needed for ClickHouse. #30315 (Alexey Milovidov).
- Added docker image to build docs. #30499 (Ilya Yatsishin).
Bug Fix (user-visible misbehaviour in official stable release
- Fix
ORDER BY ... WITH FILL
with setTO
andFROM
and no rows in result set. #30888 (Anton Popov).
Bug Fix (user-visible misbehaviour in official stable release)
- Fix hanging DDL queries on Replicated database while adding a new replica. #29328 (Kevin Michel).
- Fix vertical merges of projection parts. This fixes #29253 . This PR also fixes several projection merge/mutation issues introduced in https://github.com/ClickHouse/ClickHouse/pull/25165. #29337 (Amos Bird).
- Remove window function
nth_value
as it is not memory-safe. This closes #29347. #29348 (Alexey Milovidov). - Fix replicated access storage not shutting down cleanly when misconfigured. #29388 (Kevin Michel).
- rocksdb: fix race condition during multiple DB opening (and get back some tests that triggers the problem on CI). #29393 (Azat Khuzhin).
- Fix Logical error
Cannot capture columns
in functions greatest/least. Closes #29334. #29454 (Kruglov Pavel). - Fix possible
Block structure mismatch
for subqueries with pushed-downHAVING
predicate. Fixes #29010. #29475 (Nikolai Kochetov). - Fixed incorrect table name parsing on loading of
Lazy
database. Fixes #29456. #29476 (Alexander Tokmakov). - In ODBC bridge add retries for error Invalid cursor state. It is a retriable error. Closes #29473. #29518 (Kseniia Sumarokova).
- Fix bug in check
pathStartsWith
becuase there was bug with the usage ofstd::mismatch
:The behavior is undefined if the second range is shorter than the first range.
. #29531 (Kseniia Sumarokova). - Avoid deadlocks when reading and writting on JOIN Engine tables at the same time. #29544 (Raúl Marín).
- Fix null deference for
GROUP BY WITH TOTALS HAVING
(when the column fromHAVING
wasn't selected). #29553 (Azat Khuzhin). - Fix rare segfault in
ALTER MODIFY
query when using incorrect table identifier inDEFAULT
expression likex.y.z...
Fixes #29184. #29573 (alesapin). - Fix JIT expression compilation with aliases and short-circuit expression evaluation. Closes #29403. #29574 (Maksim Kita).
- Condition in filter predicate could be lost after push-down optimisation. #29625 (Nikolai Kochetov).
- Fixed incorrect behaviour of setting
materialized_postgresql_tables_list
at server restart. Found in #28529. #29686 (Kseniia Sumarokova). - Fix incorrect
GROUP BY
(multiple rows with the same keys in result) in case of distributed query when shards had mixed versions<= 21.3
and>= 21.4
,GROUP BY
key had several columns all with fixed size, and two-level aggregation was activated (seegroup_by_two_level_threshold
andgroup_by_two_level_threshold_bytes
). Fixes #29580. #29735 (Nikolai Kochetov). - Fix concurrent access to
LowCardinality
duringGROUP BY
(leads to SIGSEGV). #29782 (Azat Khuzhin). - Fix bad cast in
ATTACH TABLE ... FROM 'path'
query when non-string literal is used instead of path. It may lead to reading of uninitialized memory. #29790 (Alexey Milovidov). - Avoid
Timeout exceeded: elapsed 18446744073.709553 seconds
error that might happen in extremely rare cases, presumably due to some bug in kernel. Fixes #29154. #29811 (Alexander Tokmakov). - MaterializedMySQL: Fix an issue where if the connection to MySQL was lost, only parts of a transaction could be processed. #29837 (Håvard Kvålen).
- Fix system tables recreation check (fails to detect changes in enum values). #29857 (Azat Khuzhin).
- Fix potential resource leak of the concurrent query limit of merge tree tables introduced in https://github.com/ClickHouse/ClickHouse/pull/19544 . #29879 (Amos Bird).
- Fix data-race between
LogSink::writeMarks()
andLogSource
inStorageLog
. #29946 (Azat Khuzhin). - Fix possible data-race between
FileChecker
andStorageLog
/StorageStripeLog
. #29959 (Azat Khuzhin). - try to close issue: #29965. #29976 (hexiaoting).
- Fix crash of sample by
tuple()
, closes #30004. #30016 (flynn). - Dropped
Memory
database might reappear after server restart, it's fixed (#29795). Also addedforce_remove_data_recursively_on_drop
setting as a workaround forDirectory not empty
error when droppingOrdinary
database (because it's not possible to remove data leftovers manually in cloud environment). #30054 (Alexander Tokmakov). - Fix race between MOVE PARTITION and merges/mutations for MergeTree. #30074 (Azat Khuzhin).
- Fix error
Port is already connected
for queries withGLOBAL IN
andWITH TOTALS
. Only for 21.9 and 21.10. #30086 (Nikolai Kochetov). - Support nullable arguments in function
initializeAggregation
. #30177 (Anton Popov). - Fix INSERT SELECT incorrectly fills MATERIALIZED column based of Nullable column. #30189 (Azat Khuzhin).
- Fix
pread_fake_async
/pread_threadpool
withmin_bytes_to_use_direct_io
. #30191 (Azat Khuzhin). - Fix reading from
MergeTree
withmax_read_buffer_size=0
(can lead toCan't adjust last granule
LOGICAL_ERROR
, or even data loss). #30192 (Azat Khuzhin). -
- Allow identifiers staring with numbers in multiple joins. #30230 (Vladimir C).
- FlatDictionary, HashedDictionary fix bytes_allocated calculation for nullable attributes. #30238 (Maksim Kita).
- Fix crash with shortcircuit and lowcardinality in multiIf. #30243 (Raúl Marín).
- Fix
[I]LIKE
function. Closes #28661. #30244 (Nikolay Degterinsky). - Fix ComplexKeyHashedDictionary, ComplexKeySparseHashedDictionary parsing
preallocate
option from layout config. #30246 (Maksim Kita). - fix replaceRegexpAll bug. #30292 (Memo).
- Fix column alias resolution of JOIN queries when projection is enabled. This fixes #30146. #30293 (Amos Bird).
- Queries with condition like
IN (subquery)
could return incorrect result in case if aggregate projection applied. Fixed creation of sets for projections. #30310 (Amos Bird). - Makes #30162 less possible ... #30370 (Vasily Nemkov).
- Fixed segfault which might happen if session expired during execution of REPLACE PARTITION. #30432 (Alexander Tokmakov).
-
- Fix deadlock on ALTER with scalar subquery to the same table, close #30461. #30492 (Vladimir C).
- Add missing parenthesis for
isNotNull
/isNull
rewrites toIS [NOT] NULL
(fixes queries that has something likeisNotNull(1)+isNotNull(2)
). #30520 (Azat Khuzhin). - Limit push down optimization could cause a error
Cannot find column
. Fixes #30438. #30562 (Nikolai Kochetov). - Update aws-sdk submodule for throttling in Yandex.S3. #30646 (ianton-ru).
- Functions for case-insensitive search in UTF8 strings like
positionCaseInsensitiveUTF8
andcountSubstringsCaseInsensitiveUTF8
might find substrings that actually does not match, it's fixed. #30663 (Alexander Tokmakov). - Fix PREWHERE with WHERE in case of always true PREWHERE. #30668 (Azat Khuzhin).
- Fixed a race condition between
REPLACE/MOVE PARTITION
and background merge in non-replicatedMergeTree
that might cause a part of moved/replaced data to remain in partition. Fixes #29327. #30717 (Alexander Tokmakov). - Clean temporary directory when localBackup failed by some reason. #30797 (ianton-ru).
- Fixed ambiguity when extracting auxiliary ZooKeeper name from ZooKeeper path in
ReplicatedMergeTree
. Previously server might fail to start withUnknown auxiliary ZooKeeper name
if ZooKeeper path contains a colon. Fixes #29052. Also it was allowed to specify ZooKeeper path that does not start with slash, but now it's deprecated and creation of new tables with such path is not allowed. Slashes and colons in auxiliary ZooKeeper names are not allowed too. #30822 (Alexander Tokmakov). - Fix crash when projection with hashing function is materialized. This fixes #30861 . The issue is similar to https://github.com/ClickHouse/ClickHouse/pull/28560 which is a lack of proper understanding of the invariant of header's emptyness. #30877 (Amos Bird).
- Fix set index not used in AND/OR expressions when there are more than two operands. This fixes #30416 . #30887 (Amos Bird).
NO CL ENTRY
- NO CL ENTRY: 'Generate test_results.tsv for fasttest'. #29319 (Dmitry Novik).
- NO CL ENTRY: 'Revert "Add coroutines example."'. #29829 (Nikolai Kochetov).
- NO CL ENTRY: 'Link FAQ from Debian installation'. #29836 (Federico Ceratto).
- NO CL ENTRY: 'add support of window function in antlr grammar'. #30181 (PHaroZ).
- NO CL ENTRY: 'Revert "Fix style regressions on benchmark page"'. #30652 (alesapin).
- NO CL ENTRY: 'Revert "Improve usability of
remote_url_allow_hosts
"'. #30707 (Nikolai Kochetov). - NO CL ENTRY: 'Revert "Revert "Improve usability of
remote_url_allow_hosts
""'. #30708 (Nikolai Kochetov). - NO CL ENTRY: 'remove some unneeded header files'. #30722 (flynn).
NOT FOR CHANGELOG / INSIGNIFICANT
- Fix race in StorageSystemRocksDB #29289 (Vladimir C).
- Fixed logging level for message in
S3Common.cpp
#29308 (Vladimir Chebotarev). - Revert parse number binary literal #29309 (Maksim Kita).
- Parser number binary literal update #29310 (Maksim Kita).
- Fix assertion in DDLDependencyVisitor #29323 (Alexander Tokmakov).
- Function h3GetFaces optimization #29335 (Maksim Kita).
- Less sleeps in integration tests. #29338 (Nikolai Kochetov).
- Fix trivial mistake in DiskWebServer #29340 (Alexey Milovidov).
- Fix integration test for RocksDB #29341 (Alexey Milovidov).
- Fix typo in comment #29342 (Alexey Milovidov).
- Add lld into Build-Depends for debian package #29343 (Azat Khuzhin).
- Apply a patch from Azat #29344 (Alexey Milovidov).
- Update libhdfs3 #29345 (Alexey Milovidov).
- Remove ya.make #29346 (Alexey Milovidov).
- Fix assert in table function
merge
with database regexp #29355 (Alexey Milovidov). - Remove useless files related to pytest #29361 (Alexey Milovidov).
- Remove obsolete non-automated tests #29362 (Alexey Milovidov).
- Fix integration test #29365 (Kseniia Sumarokova).
- Fix H3 function name (h3ResIsClassIII to h3IsResClassIII) #29368 (Bharat Nallan).
- RFC: tests: purge unused configs #29375 (Azat Khuzhin).
- Fix ugly typo #29379 (Alexey Milovidov).
- Fix comments in AggregateFunctionFactory #29380 (Bharat Nallan).
- Add GraphCDN in adopter list #29387 (Mohamad Fadhil).
- Fix 02015_async_inserts_2 flakiness #29390 (Azat Khuzhin).
- test for #23634 ( nullable PK and negate cond ) #29392 (Denny Crane).
- Merge EmbeddedRocksDBBlockInputStream and EmbeddedRocksDBSource #29428 (Vladimir C).
- Map bloom filter index mapValues equals function support #29431 (Maksim Kita).
- Dictionary Array nested Map added test #29432 (Maksim Kita).
- Dictionary view different database added test #29443 (Maksim Kita).
- Fix deadlock in concurrent async inserts and truncates #29444 (Anton Popov).
- Fix flaky test 01158_zookeeper_log_long #29445 (Alexander Tokmakov).
- clickhouse-test: fix long tag check for flaky check (--test-runs > 1) #29449 (Azat Khuzhin).
- clickhouse-test: fix shared list object (by fixing manager lifetime) #29452 (Azat Khuzhin).
- Enable memory profiler on CI #29453 (Azat Khuzhin).
- test for #23634 added tests for tuples #29460 (Denny Crane).
- Fix 2024_merge_regexp_assert #29461 (Azat Khuzhin).
- Add std::cerr/std::cout style check #29464 (Azat Khuzhin).
- [github] we're switching to CLA based on Apache CLA #29466 (ClickHouse Admin).
- Bloom filter indexes updated tests #29474 (Maksim Kita).
- Remove more data streams #29491 (Nikolai Kochetov).
- Fix possible hang in PushingAsyncPipelineExecutor. #29494 (Nikolai Kochetov).
- Use
max_parse_depth
in fuzzers #29497 (Nikita Mikhaylov). - Introducing Fn concept for function signature checking, simplifying SimpleCache #29500 (Mike Kot).
- Fix LOGICAL_ERROR for INSERT with concurrent ALTER #29502 (Azat Khuzhin).
- Log queries to external databases (since they may be rewritten) #29503 (Azat Khuzhin).
- Fix server pid (hence exit code and attaching with gdb) in fuzzer tests #29513 (Azat Khuzhin).
- Bump cmake minimum required version to 3.14 #29515 (Azat Khuzhin).
- Changelog heredoc added backward incompatible change #29530 (Maksim Kita).
- Fix test names #29539 (Filatenkov Artur).
- Making Monotonicity an aggregate to use with designated initializers #29540 (Mike Kot).
- Generalize code in IColumn::permute #29545 (Anton Popov).
- Add error for multiple keys without current_key_id #29546 (Filatenkov Artur).
- support conversion between date32 and datetime64 #29552 (kevin wan).
- Fixed test with dictGet without database name as column default value #29568 (Maksim Kita).
- Add FAIL message to test_results.tsv #29583 (Dmitry Novik).
- Generalize code in
IColumn::updatePermutation
#29595 (Anton Popov). - Add fuzzer for
executeQuery
function #29596 (Nikita Mikhaylov). - Fix docker/test/util declaration #29597 (Dmitry Novik).
- Skip test for executable table function under MSan #29600 (Alexey Milovidov).
- Improve some more integration tests #29603 (Ilya Yatsishin).
- Improve CompressedReadBuffer #29605 (Ilya Yatsishin).
- Do not send many signals at server restart (integration tests). #29608 (Nikolai Kochetov).
- Fix race between MergeTask and storage destruction #29614 (Nikita Mikhaylov).
- BloomFilter indexes map data type support fix unsafe identifier cast #29623 (Maksim Kita).
- Follow-up for #26231 #29626 (Kseniia Sumarokova).
- Map get non const key added test #29636 (Maksim Kita).
- Add columns in columns.sql for INFORMATION_SCHEMA #29637 (Filatenkov Artur).
- Merging #29376 #29649 (Anton Popov).
- AddDefaultDatabaseVisitor support dictGet #29650 (Maksim Kita).
- Do not try to fuzz
USE
/SET
queries and print stacktrace #29660 (Azat Khuzhin). - Rename
common
tobase
#29661 (Alexey Milovidov). - Move modelEvaluate function to its own file #29662 (Alexey Milovidov).
- Perf fixes #29663 (Azat Khuzhin).
- UserDefinedExecutableFunctions added implicit cast #29666 (Maksim Kita).
- Cleanup common defines #29680 (Azat Khuzhin).
- Fix Xcode 13 build #29682 (Denis Glazachev).
- Non-recursive implementation for type list and its functions #29683 (Mike Kot).
- Reorganize contrib/ IDE folders #29684 (Denis Glazachev).
- Cleanup unbundled image #29689 (Azat Khuzhin).
- Fix memory tracking for merges and mutations #29691 (Azat Khuzhin).
- Fix data-race in WriteIndirectBuffer (used in DiskMemory) #29692 (Azat Khuzhin).
- Fix flaky test #29706 (Kseniia Sumarokova).
- BorrowedObjectPool condition variable notify fix #29722 (Maksim Kita).
- Better exception message for local interactive #29737 (Kseniia Sumarokova).
- Fix --stage for clickhouse-local #29745 (Azat Khuzhin).
- Forbid Nullable for JSONExtract* (JSONExtract() still supports Nullable), leads to SIGSEGV before #29746 (Azat Khuzhin).
- TableFunctionDictionary fix comment #29747 (Maksim Kita).
- May be fix s3 tests #29762 (Kseniia Sumarokova).
- Remove some merging streams #29768 (Nikolai Kochetov).
- Parse query from metadata exception throw fix #29779 (Maksim Kita).
- Simplify obtaining of server pid in fuzzer tests #29781 (Azat Khuzhin).
- Fix data-race between fatal error handler and progress packets #29783 (Azat Khuzhin).
- Fix parallel_view_processing #29786 (Azat Khuzhin).
- Function reinterpretAs improve readability #29796 (Maksim Kita).
- Refactor ConcurrentBoundedQueue #29801 (Maksim Kita).
- Improve usability of error messages when error is caused by sophisticated interventions #29803 (Alexey Milovidov).
- Improvement for #28373 #29804 (Alexander Tokmakov).
- Better diagnostic for OPTIMIZE #29812 (Alexander Tokmakov).
- Add listen_backlog to documentation #29813 (Azat Khuzhin).
- Dictionary attributes updated documentation #29816 (Maksim Kita).
- Fix compilation with glibc 2.34 (MINSIGSTKSZ defined as sysconf(_SC_SIGSTKSZ)) #29820 (Azat Khuzhin).
- Make memory_profiler_step API cleaner #29825 (Azat Khuzhin).
- Add coroutines example. #29827 (Nikolai Kochetov).
- Add coroutines example. #29841 (Nikolai Kochetov).
- Update changelog to include caveats about Nullable types in data skipping indexes #29855 (Azat Khuzhin).
- Rewrite clickhouse-test to use python clickhouse_driver #29856 (Azat Khuzhin).
- Fix client #29864 (Kseniia Sumarokova).
- Remove some more streams. #29898 (Nikolai Kochetov).
- Add logging in ZooKeeper client #29901 (Alexander Tokmakov).
- Fix some flaky tests #29902 (Kseniia Sumarokova).
- Grep server log even if it contains binary data #29903 (Alexander Tokmakov).
- Cosmetic refactoring of server constants. #29913 (Amos Bird).
- Format improvement of AlterQuery #29916 (flynn).
- Fix flaky integration tests (test_backup_restore/test_input_format_parallel_parsing_memory_tracking) #29919 (Azat Khuzhin).
- Fix some flaky tests #29923 (Alexander Tokmakov).
- Fix build due to conflicts in serverConstants #29931 (Azat Khuzhin).
- Minor changes #29932 (Alexey Milovidov).
- Remove trash from SentryWriter #29933 (Alexey Milovidov).
- Remove
printf
function usage. #29935 (Alexey Milovidov). - Stateless flaky tests fixes #29947 (Azat Khuzhin).
- Fix filtering by tuple (some conditions was lost during analyzing) #29956 (Azat Khuzhin).
- Allow memory profiler under sanitizers (ASan/UBsan/MSan only) #29979 (Azat Khuzhin).
- Tests naming fix #29982 (Maksim Kita).
- More timeouts in test scripts #29992 (alesapin).
- Update BoringSSL #29998 (Filatenkov Artur).
- Remove streams from formats. #30001 (Nikolai Kochetov).
- Follow-up to #29901 #30003 (Alexander Tokmakov).
- More strict check for intersecting parts #30005 (Alexander Tokmakov).
- Ignore parallel removing warning in 00992_system_parts_race_condition_zookeeper_long #30007 (Azat Khuzhin).
- Try remove excessive logging #30008 (Alexander Tokmakov).
- remove redundant dot in exception message #30017 (flynn).
- Fix build #30028 (Kseniia Sumarokova).
- Attach trace_log to stateless tests report as is #30030 (Alexander Tokmakov).
- Remove unused headers and handle exception 'unrecognised option' in clickhouse-local #30053 (Kruglov Pavel).
- clickhouse-test: replace clickhouse-driver with http interface (via http.client) #30065 (Azat Khuzhin).
- Fix hardware utilization info printing in client #30072 (Dmitry Novik).
- cmake generator: unlink before creating a link #30073 (lehasm).
- SQL user defined functions fix alias #30075 (Maksim Kita).
- Add Greenhouse careers page to website #30077 (Cody Baker).
- Update team photos on website #30078 (Cody Baker).
- Add webinar signup promo to website homepage #30079 (Cody Baker).
- test for rename atomic hanging #30080 (Denny Crane).
- Modify ConnectionPoolWithFailover get_priority ROUND_ROBIN comments #30092 (小路).
- Fix flaky test 01939_network_send_bytes_metrics #30134 (Dmitry Novik).
- System data skipping indices size fix test names #30141 (Maksim Kita).
- FunctionsJSON avoid copying object element during iteration #30145 (Maksim Kita).
- Disable fsync_metadata on CI #30149 (Azat Khuzhin).
- Make test_MemoryTracking::test_http not flaky #30150 (Azat Khuzhin).
- Add careers menu item to navigation #30151 (Cody Baker).
- Update yandex logo on homepage #30152 (Cody Baker).
- Remove stream interfaces #30171 (Nikolai Kochetov).
- Better interfaces for
IDataType
andISerialization
#30174 (Anton Popov). - Add blog post for v21.10 release #30186 (Cody Baker).
- Smaller smoothing window in throttler. #30193 (Nikolai Kochetov).
- Fix clang-tidy warnings in FunctionsJSON code #30217 (Azat Khuzhin).
- Fix --hung-check in clickhouse-test #30218 (Azat Khuzhin).
- FunctionsJSON updated #30228 (Maksim Kita).
- PolygonDictionary fix bytes_allocated #30239 (Maksim Kita).
- ComplexKeyHashedDictionary fix keys copy #30241 (Maksim Kita).
- Removing data streams folder #30247 (Nikolai Kochetov).
- --stage for clickhouse-local #30275 (Kseniia Sumarokova).
- Use forward declaration for Buffer<> in generic headers #30276 (Azat Khuzhin).
- Less threads in clickhouse-local, fix Ok. printing #30282 (Kseniia Sumarokova).
- Adjust resource heavy tests #30284 (Raúl Marín).
- Fix printing stacktraces for clickhouse-local #30285 (Kseniia Sumarokova).
- Fix throwing syntax exception in clickhouse-local #30288 (Kseniia Sumarokova).
- Various fixes to install procedure #30295 (Denis Glazachev).
- Fix clickhouse-local break on timeout #30297 (Kseniia Sumarokova).
- Add RISC-V build #30298 (Alexey Milovidov).
- Move SquashingTransform to Interpreters (to fix split build) #30318 (Azat Khuzhin).
- Increase default wait of the server start in clickhouse-test #30320 (Azat Khuzhin).
- Update memory optimisation for MergingSorted. #30322 (Nikolai Kochetov).
- Single sorting step #30335 (Nikolai Kochetov).
- Send table columns in clickhouse-local #30336 (Kseniia Sumarokova).
- Fix consumed memory indication in clickhouse-client #30337 (Dmitry Novik).
- Fix fuzzer build #30344 (Nikita Mikhaylov).
- ExecutablePool dictionary source fix borrow timeout milliseconds #30345 (Maksim Kita).
- StorageExecutable fix small issues #30352 (Maksim Kita).
- Fix ca-bundle.crt in kerberized_hadoop/Dockerfile #30358 (Vladimir C).
- Update obsolete comments. #30359 (Nikolai Kochetov).
- Rename readWkt* functions to readWKT*, added an alias SVG for svg function #30361 (Nikita Mikhaylov).
- Fix crash when minmax_count projection is used with primary key in partition expr #30384 (Amos Bird).
- Follow-up for #30282 #30412 (Kseniia Sumarokova).
- ExecutableUDF example #30436 (Maksim Kita).
- Use robot token in actions for statuses #30439 (alesapin).
- Remove statuses from actions #30444 (alesapin).
- Fix s3 for github actions #30447 (alesapin).
- ExecutableUDF example fix style check #30451 (Maksim Kita).
- Support VALUES format in async inserts #30456 (Anton Popov).
- Update release date and add training link #30475 (Cody Baker).
- Fix horizontal scroll bar #30476 (Cody Baker).
- SQLUserDefinedFunctions composition fix #30483 (Maksim Kita).
- Trying builds on github actions #30493 (alesapin).
- HashedArrayDictionary optimize read multiple attributes #30501 (Maksim Kita).
- StorageDictionary fix potential configuration race #30502 (Maksim Kita).
- Fix style regressions on benchmark page #30506 (Cody Baker).
- Change link in nav from community -> learn #30508 (Cody Baker).
- Add placeholder to play.html inputs #30509 (Vitaly Orlov).
- Add bytes to stats and human readable rows to play.html #30511 (Vitaly Orlov).
- clickhouse-local: fix block lost in interactive mode #30521 (Azat Khuzhin).
- Remove check_columns argument from MergeTree code (false was never passed) #30522 (Azat Khuzhin).
- Fix typo and update NuRaft #30550 (alesapin).
- Refactoring in codec encrypted #30564 (Filatenkov Artur).
- Try to fix #30397 #30565 (Nikolai Kochetov).
- Support Nullable(String) type in arrayStringConcat #30566 (Nikita Taranov).
- Function ngrams fixed tests #30567 (Maksim Kita).
- Test clickhouse local columns description fix number #30568 (Maksim Kita).
- Update documentation for distributed_push_down_limit #30577 (Azat Khuzhin).
- Fix tests that relies on checking stack size under TSan #30579 (Azat Khuzhin).
- Add metadata for *_log into tests artifacts #30589 (Azat Khuzhin).
- Fix LOGICAL_ERROR on connection draining in case of ECONNRESET #30594 (Azat Khuzhin).
- Adjust perf test for simdjson #30596 (Alexey Milovidov).
- Update minimum allowed compiler versions #30597 (Alexey Milovidov).
- Replace estimated_size with optional for readFile/createReadBufferFromFileBase #30611 (Azat Khuzhin).
- RFC: Relax minimal clang version (set it to 12, was 13) #30613 (Azat Khuzhin).
- clickhouse-test: increase delay for initial SELECT 1 check #30619 (Azat Khuzhin).
- Update Client.cpp #30636 (Kseniia Sumarokova).
- Update LocalServer.cpp #30637 (Kseniia Sumarokova).
- Typo fix in play.html #30638 (Vitaly Orlov).
- Fix argument types for now and now64 #30639 (Nikolai Kochetov).
- Fix intersecting parts in
parts_to_do
#30651 (Alexander Tokmakov). - HashedDictionaries added read performance tests #30653 (Maksim Kita).
- Change
alter_lock
fromRWLock
tostd::timed_mutex
#30658 (Alexander Tokmakov). - Initialize custom TLDs in clickhouse-local #30660 (Azat Khuzhin).
- Add QueryProfilerRuns profile event #30661 (Azat Khuzhin).
- Switch everything left from
<yandex>
to<clickhouse>
#30662 (Azat Khuzhin). - Improve usability of
remote_url_allow_hosts
#30673 (Alexey Milovidov). - Fix indecency #30337 #30674 (Alexey Milovidov).
- Better wait for server start in integration tests #30677 (alesapin).
- Fix keeper zookeeper converter test #30678 (alesapin).
- Don't run build checks for documentation #30681 (alesapin).
- Refactoring of Log family #30689 (Vitaly Baranov).
- Update hardware page colors #30719 (Cody Baker).
- Fix test_part_uuid::test_part_uuid_wal #30723 (Azat Khuzhin).
- Fix gtest_disk_encrypted (for new readFile/createReadBufferFromFileBase() interfaces) #30725 (Azat Khuzhin).
- tests/ci/docker_images_check: add missing time import #30727 (Azat Khuzhin).
- Add functional tests to github actions #30729 (alesapin).
- Run pylint over python scripts for github actions #30733 (Azat Khuzhin).
- DictionarySource unknown column name in dictionary fix #30736 (Maksim Kita).
- Update 01083_expressions_in_engine_arguments.sql #30741 (Kseniia Sumarokova).
- Performance tests tuning #30773 (Azat Khuzhin).
- Remove cruft #30780 (Alexey Milovidov).
- Fix test 02022 #30786 (Kseniia Sumarokova).
- Trying to make fuzzer check less hardcoded #30795 (alesapin).
- DictionarySource unknown column name fix #30800 (Maksim Kita).
- Add funding press release #30806 (Cody Baker).
- Update installation success message #30672 #30830 (Teja).
- filelog engine tests improve #30832 (flynn).
- Remove redundant from http buffer #30837 (Kseniia Sumarokova).
- Docs check on github actions #30839 (alesapin).
- Fix fuzzer on master #30841 (alesapin).
- Disable check for ZooKeeper session uptime by default #30847 (Alexander Tokmakov).
- enable modify table comment of rest table engine #30852 (flynn).
- Fix typo #30853 (Kseniia Sumarokova).
- Fixed
--disable-net-host
inrunner
#30863 (Vladimir Chebotarev). - Fix protocol revision. #30864 (Nikolai Kochetov).
- Add docker cleanup after actions #30868 (alesapin).
- Fix error message in Keeper handler #30880 (alesapin).
- Better handling of
xtables.lock
inrunner
#30892 (Vladimir Chebotarev). - Reimplement #28639 #30903 (Alexey Milovidov).
- Miscellaneous #30917 (Alexey Milovidov).
- Fix yml in docs release #30928 (alesapin).
- Debug github event #30929 (alesapin).
- Fix docs release #30933 (alesapin).
- Fix style check #30937 (alesapin).
- Fix file progress for clickhouse-local #30938 (Kseniia Sumarokova).
- Fix flaky test #30940 (Kseniia Sumarokova).
- Fix reading from TinyLog #30941 (Vitaly Baranov).
- Add github to known hosts in docs release #30947 (alesapin).
- Parse json from response in ci checks #30948 (alesapin).