mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
50 KiB
50 KiB
sidebar_position | sidebar_label |
---|---|
1 | 2022 |
2022 Changelog
ClickHouse release v22.3.1.1262-prestable (92ab33f560
) FIXME as compared to v22.2.1.2139-prestable (75366fc95e
)
Backward Incompatible Change
- Improvement the toDatetime function overflows. When the date string is very large, it will be converted to 1970. #32898 (HaiBo Li).
- Make arrayCompact behave as other higher-order functions: perform compaction not of lambda function results but on original array. If you using nontrivial lambda functions in arrayCompact you may restore old behaviour by wrapping arrayCompact arguments into arrayMap. Closes #34010 #18535 #14778. #34795 (Alexandre Snarskii).
New Feature
- New data type
Object(<schema_format>)
, which supports storing of semi-structured data (for now JSON only). Data is written to such types as string. Then all paths are extracted according to format of semi-structured data and written as separate columns in most optimal types, that can store all their values. Those columns can be queried by names that match paths in source data. E.gdata.key1.key2
or with cast operatordata.key1.key2::Int64
. #23932 (Anton Popov). - Support authentication of users connected via SSL by their X.509 certificate. #31484 (eungenue).
- related to issue: #30715. Add three functions for map data type: 1. mapReplace(map1, map2) - replaces values for keys in map1 with the values of the corresponding keys in map2; adds keys from map2 that don't exist in map1. 2. mapFilter 3. mapMap mapFilter and mapMap are higher order functions , accept two arguments, first argument is a lambda function with k, v pair , the second argument is a map type column. #33698 (hexiaoting).
- Add local cache for disk s3. Closes #28961. #33717 (Kseniia Sumarokova).
- Implement DateTime64 transform from and to arrow column, which closes #8280 and closes #28574. #34561 (李扬).
- Add cpu/mem metric for clickhouse-local. Close #34545. #34605 (李扬).
- Support schema inference for inserting into table functions file/hdfs/s3/url. #34732 (Kruglov Pavel).
- A new settings called <allow_plaintext_password><allow_no_password> is added in server configuration which on/off insecure AUTH_TYPE plaintext-password and no_password. By default the property is set to true which means authType Plaintext_password & NO_password is allowed. #34738 (Heena Bansal).
- Add new table function
hive
, usage as followhive('<hive metastore url>', '<hive database>', '<hive table name>', '<columns definition>', '<partition columns>')
for exampleSELECT * FROM hive('thrift://hivetest:9083', 'test', 'demo', '`id` Nullable(String), `score` Nullable(Int32), `day` Nullable(String)', 'day')
. #34946 (lgbo). - Added date_time_input_format = 'best_effort_us'. Closes #34799. #34982 (WenYao).
- Changed the Play UI to select a theme by the following priority: * 'theme' GET parameter * 'theme' in localStorage * According to OS preference (didn't work before). #35068 (peledni).
-
- Add
database_replicated_allow_only_replicated_engine
setting. When enabled, it only allowed to createReplicated
tables inReplicated
database. #35214 (Nikolai Kochetov).
Performance Improvement
- Calling std::distance on large list will decrease performance, use a version in Node to substitute with more memory 80MB/1000w Nodes. The logic is: Every node is list has a version with type size_t, setting in insert or insertOrReplace method using the class member variable current_version. The version is only increase at enableSnapshot method. When doing a snapshot, call snapshotSizeWithVersion to get snapshot size and version(snapshot_up_to_version). When traversing the list, if node version is less then or equal to snapshot_up_to_version, then protects it from deleting if node version is bigger than snapshot_up_to_version, we can do anything to it. #34486 (zhanglistar).
- Compaction of log store in Nuraft need acquire an inner lock which also used in normal commit process, so we delete useless logs in
compact
method of Changelog class in a background thread. See details on:1707a7572a/src/handle_commit.cxx (L560)
. #34534 (zhanglistar). - Don't hold the latest snapshot in memory, instead, reading the snapshot if needed, sequence reading is fast to 200+MBps even on HDD using mmap system call. Writing snapshot data directly to disk using compression method without holding original data and compressed data in memory. #34584 (zhanglistar).
- MergeTree improve insert performance replacing std::stable_sort with pdqsort. #34750 (Maksim Kita).
- Improve the performance of the
ANY
aggregation function by acting over batches. #34760 (Raúl Marín). - Improve performance of
detectCharset
,detectLanguageUnknown
functions. Improve performance ofDirectDictionary
if dictionary source isClickHouse
. Improve performance of processing queries with largeIN
section. #34888 (Maksim Kita). - Less lock on connection using atomic stat. Notice that it is an approximate stat. #35010 (zhanglistar).
Improvement
- Make the znode ctime and mtime consistent between servers. #33441 (小路).
- Hold time lock while assigning tasks to clear old temporary directories in StorageMergeTree. #34025 (Amos Bird).
- When large files were written with
s3
table function or table engine, the content type on the files was mistakenly set toapplication/xml
due to a bug in the AWS SDK. This closes #33964. #34433 (Alexey Milovidov). - Improve schema inference with globs in FIle/S3/HDFS/URL engines. Try to use the next path for schema inference in case of error. #34465 (Kruglov Pavel).
-
- Improve the opentelemetry span logs for INSERT operation on distributed table. #34480 (Frank Chen).
- MaterializedMySQL support materialized_mysql_tables_list(a comma-separated list of mysql database tables, which will be replicated by MaterializedMySQL database engine. Default value: empty list — means whole tables will be replicated) settings, mentioned at #32977. #34487 (zzsmdfj).
- This PR changes restrictive row policies a bit to make them an easier alternative to permissive policies in easy cases. If for a particular table only restrictive policies exist (without permissive policies) users will be able to see some rows. Also
SHOW CREATE ROW POLICY
will always showAS permissive
orAS restrictive
in row policy's definition. #34596 (Vitaly Baranov). - Add
encodeURLComponent
, 'encodeURLFormComponent' function. Closes #31092. #34607 (zzsmdfj). - Now you can read
system.zookeeper
table without restrictions on path or usinglike
expression. This reads can generate quite heavy load for zookeeper so to enable this ability you have to enable settingallow_unrestricted_reads_from_keeper
. #34609 (Sergei Trifonov). - Some refactoring and improvement over async and remote buffer related stuff. Separated in each commit. #34629 (Amos Bird).
- ExecutableUserDefinedFunctions allow to specify argument names. This is necessary for formats where argument name is part of serialization, like
Native
,JSONEachRow
. Closes #34604. #34653 (Maksim Kita). - Extract schema only once on table creation and prevent reading from local files/external sources to extract schema on each server startup. #34684 (Kruglov Pavel).
- Do not reset logging that configured via --log-file/--errorlog-file in case of empty logger.log/logger.errorlog. #34718 (Amos Bird).
- Support
remote()
/cluster()
forparallel_distributed_insert_select=2
. #34728 (Azat Khuzhin). - Add name hints for data skipping indices. Closes #29698. #34764 (flynn).
- Now
ALTER TABLE DROP COLUMN columnX
queries forMergeTree
table engines will work instantly whencolumnX
isALIAS
column. Fixes #34660. #34786 (alesapin). - In previous versions the progress bar in clickhouse-client can jump forward near 50% for no reason. This closes #34324. #34801 (Alexey Milovidov).
- Fix reading only columns which user asked for. Closes #34163. #34849 (Kseniia Sumarokova).
- Implement MemoryStatisticsOS for FreeBSD. #34902 (Alexandre Snarskii).
- Allow to open empty sqlite db file if it does not exist. Closes #33367. #34907 (Kseniia Sumarokova).
- Allow LowCardinality strings for ngrambf_v1/tokenbf_v1 indexes. Closes #21865. #34911 (Lars Hiller Eidnes).
- Ignore per-column
TTL
inCREATE TABLE AS
if new table engine does not support it (i.e. if the engine is not ofMergeTree
family). #34938 (Azat Khuzhin). - Use connection pool for hive metastore client. #34940 (lgbo).
- Currently, if the user changes the settings of the system tables there will be tons of logs and ClickHouse will rename the tables every minute. This fixes #34929. #34949 (Nikita Mikhaylov).
- remove unnecessary columns for reading parquet/orc files. #34954 (lgbo).
- For random access readbuffer in hive, the first time to read the readbuffer would use the original readbuffer instead of local file. When we read a parquet/orc format file, the readbuffer seeks to the end of the file, which will be blocked until the local file finishes download, and make the whold process slow. #34957 (lgbo).
- Add more sanity checks for keeper configuration: now mixing of localhost and non-local servers is not allowed, also add checks for same value of internal raft port and keeper client port. #35004 (alesapin).
- Functions
dictGetHierarchy
,dictIsIn
,dictGetChildren
,dictGetDescendants
support implicit key cast and constant arguments. Closes #34970. #35027 (Maksim Kita). - Avoid division by zero in Query Profiler if Linux kernel has a bug. Closes #34787. #35032 (Alexey Milovidov).
- Avoid possible
MEMORY_LIMIT_EXCEEDED
duringINSERT
intoBuffer
withAggregateFunction
. #35072 (Azat Khuzhin). - Support
view()
forparallel_distributed_insert_select
. #35132 (Azat Khuzhin). - Add setting to lower column case when reading parquet/ORC file. #35145 (shuchaome).
- Do not retry non-rertiable errors. Closes #35161. #35172 (Kseniia Sumarokova).
- Added disk_name to system.part_log. #35178 (Artyom Yurkov).
- Currently, ClickHouse validates hosts defined under <remote_url_allow_hosts> for URL and Remote Table functions. This PR extends the RemoteHostFilter to Mysql and PostgreSQL table functions. #35191 (Heena Bansal).
- Sometimes it is not enough for us to distinguish queries hierachy only by is_initial_query in system.query_log and system.processes. So distributed_depth is needed. #35207 (李扬).
- Support test mode for clickhouse-local. #35264 (Kseniia Sumarokova).
- Return const for function getMacro if not in distributed query. Close #34727. #35289 (李扬).
- Reload
remote_url_allow_hosts
after config update. #35294 (Nikolai Kochetov).
Bug Fix
- Ignore obsolete grants in ATTACH GRANT statements. This PR fixes #34815. #34855 (Vitaly Baranov).
- When the inner readbuffer's buffer size is too small, NEED_MORE_INPUT in
HadoopSnappyDecoder
will run multi times (>=3)for one compressed block. This makes the input data be copied into the wrong place inHadoopSnappyDecoder::buffer
. #35116 (lgbo).
Build/Testing/Packaging Improvement
- Randomize some settings in functional tests. This closes #32268. #34092 (Kruglov Pavel).
- NA. #34513 (vzakaznikov).
- Debian package clickhouse-test.deb removed completely. CI use tests from repository and standalone testing via deb package is no longer supported. #34606 (Ilya Yatsishin).
- Set timeout 40 minutes for fast tests. #34624 (Mikhail f. Shiryaev).
- Drop PVS test from CI. #34680 (Mikhail f. Shiryaev).
- Limit DWARF version for debug info by 4 max, because our internal stack symbolizer cannot parse DWARF version 5. This makes sense if you compile ClickHouse with clang-15. #34777 (Alexey Milovidov).
- Improve CI scripts arguments. #34792 (Mikhail f. Shiryaev).
- Use @robot-clickhouse as an author and committer for PRs like https://github.com/ClickHouse/ClickHouse/pull/34685. #34793 (Mikhail f. Shiryaev).
- Separate smaller clickhouse-keeper build. #35031 (alesapin).
- Clion has the following problems "The breakpoint will not currently be hit. No executable code is associated with this line". #35179 (小路).
- Add an ability to build stripped binaries with cmake. #35196 (alesapin).
Bug Fix (user-visible misbehaviour in official stable release)
- Fix distributed subquery max_query_size limitation inconsistency. #34078 (Chao Ma).
- Fix incorrect trivial count result when part movement feature is used #34089. #34385 (nvartolomei).
- Stop to select part for mutate when the other replica has already updated the /log for ReplatedMergeTree engine. #34633 (Jianmei Zhang).
- Fix
allow_experimental_projection_optimization
withenable_global_with_statement
(before it may lead toStack size too large
error in case of multiple expressions inWITH
clause, and also it executes scalar subqueries again and again, so not it will be more optimal). #34650 (Azat Khuzhin). - Fix serialization/printing for system queries
RELOAD MODEL
,RELOAD FUNCTION
,RESTART DISK
when usedON CLUSTER
. Closes #34514. #34696 (Maksim Kita). - Fix ENOENT with fsync_part_directory and Vertical merge. #34739 (Azat Khuzhin).
- Fix bug for h3 funcs containing const columns which cause queries to fail. #34743 (Bharat Nallan).
- Fix possible failures in S2 functions when queries contain const columns. #34745 (Bharat Nallan).
- Fix bugs for multiple columns group by in WindowView. #34859 (vxider).
- Support DDLs like CREATE USER to be executed on cross replicated cluster. #34860 (Jianmei Zhang).
- Fix asynchronous inserts to table functions. Fixes #34864. #34866 (Anton Popov).
- Fix possible "Part directory doesn't exist" during
INSERT
. #34876 (Azat Khuzhin). - Fix postgres datetime64 conversion. Closes #33364. #34910 (Kseniia Sumarokova).
- Avoid busy polling in keeper while searching for changelog files to delete. #34931 (Azat Khuzhin).
- Unexpected result when use
in
inwhere
in hive query. #34945 (lgbo). - Fix wrong schema inference for unquoted dates in CSV. Closes #34768. #34961 (Kruglov Pavel).
- Fix possible rare error
Cannot push block to port which already has data
. Avoid pushing to port with data insideDelayedSource
. #34993 (Nikolai Kochetov). - Fix possible segfault in filelog. Closes #30749. #34996 (Kseniia Sumarokova).
- Fix unexpected result when use -state type aggregate function in window frame. #34999 (metahys).
- Fix possible exception
Reading for MergeTree family tables must be done with last position boundary
. Closes #34979. #35001 (Kseniia Sumarokova). - Fix reading from
system.asynchronous_inserts
table if there exists asynchronous insert into table function. #35050 (Anton Popov). - Fix missing alias after function is optimized to subcolumn when setting
optimize_functions_to_subcolumns
is enabled. Closes #33798. #35079 (qieqieplus). - Avoid possible deadlock on server shutdown. #35081 (Azat Khuzhin).
- Fixed the "update_lag" external dictionary configuration option being unusable with the error message
Unexpected key `update_lag` in dictionary source configuration
. #35089 (Jason Chu). - fix issue: #31469. #35118 (zzsmdfj).
- Fix
optimize_skip_unused_shards_rewrite_in
for signed columns and negative values. #35134 (Azat Khuzhin). - Fixed the incorrect translation YAML config to XML. #35135 (Miel Donkers).
- Fix partition pruning error when non-monotonic function is used with IN operator. This fixes #35136. #35146 (Amos Bird).
- Fix materialised postrgesql adding new table to replication (ATTACH TABLE) after manually removing (DETACH TABLE). Closes #33800. Closes #34922. Closes #34315. #35158 (Kseniia Sumarokova).
- Fix materialised postgres
table overrides
for partition by, etc. Closes #35048. #35162 (Kseniia Sumarokova). - Schema inference didn't work properly on case of
INSERT INTO FUNCTION s3(...) FROM ...
, it tried to read schema from s3 file instead of from select query. #35176 (Kruglov Pavel). -
- Fix
replaceRegexpAll
, close #35117. #35182 (Vladimir C).
- Fix
- Fix error in query with
WITH TOTALS
in case ifHAVING
returned empty result. This fixes #33711. #35186 (Amos Bird). -
- Fix reading port from config, close #34776. #35193 (Vladimir C).
- Make function
cast(value, 'IPv4')
,cast(value, 'IPv6')
behave same astoIPv4
,toIPv6
functions. Changed behavior of incorrect IP address passed into functionstoIPv4
,toIPv6
, now if invalid IP address passes into this functions exception will be raised, before this function return default value. Added functionsIPv4StringToNumOrDefault
,IPv4StringToNumOrNull
,IPv6StringToNumOrDefault
,IPv6StringOrNull
toIPv4OrDefault
,toIPv4OrNull
,toIPv6OrDefault
,toIPv6OrNull
. FunctionsIPv4StringToNumOrDefault
,toIPv4OrDefault
,toIPv6OrDefault
should be used if previous logic relied onIPv4StringToNum
,toIPv4
,toIPv6
returning default value for invalid address. Added settingcast_ipv4_ipv6_default_on_conversion_error
, if this setting enabled, then IP address conversion functions will behave as before. Closes #22825. Closes #5799. Closes #35156. #35240 (Maksim Kita). - Wait for IDiskRemote thread pool properly. #35257 (Azat Khuzhin).
- Fix
CHECK TABLE
query in case when sparse columns are enabled in table. #35274 (Anton Popov). - Fix possible Abort while using Brotli compression with a small
max_read_buffer_size
setting value. The bug was found in https://github.com/ClickHouse/ClickHouse/pull/35047. #35281 (Kruglov Pavel). - Fix possible segfault in JSONEachRow schema inference. #35291 (Kruglov Pavel).
- Fix possible
Assertion 'position() != working_buffer.end()' failed
while using lzma compression with smallmax_read_buffer_size
setting value. The bug was found in https://github.com/ClickHouse/ClickHouse/pull/35047. #35295 (Kruglov Pavel). - Fix possible segfault while using lz4 compression with a small max_read_buffer_size setting value. The bug was found in https://github.com/ClickHouse/ClickHouse/pull/35047. #35296 (Kruglov Pavel).
- Fix possible
Assertion 'position() != working_buffer.end()' failed
while using bzip2 compression with smallmax_read_buffer_size
setting value. The bug was found in https://github.com/ClickHouse/ClickHouse/pull/35047. #35300 (Kruglov Pavel). -
- Fix partial merge join duplicate rows bug, close #31009. #35311 (Vladimir C).
- Fix segfault in Postgres database when getting create table query if database was created using named collections. Closes #35312. #35313 (Kseniia Sumarokova).
- Fix bug in S3 zero-copy replication which can lead to errors like
Found parts with the same min block and with the same max block as the missing part
after concurrent fetch/drop table. #35348 (alesapin).
NO CL ENTRY
- NO CL ENTRY: '[ImgBot] Optimize images'. #34590 (imgbot[bot]).
- NO CL ENTRY: 'Revert "Allow restrictive row policies without permissive"'. #34782 (Vitaly Baranov).
- NO CL ENTRY: 'Revert "Remove "bugs" that do not exist anymore"'. #35241 (Alexey Milovidov).
- NO CL ENTRY: 'Revert "Change timezone in Docker"'. #35243 (Alexey Milovidov).
- NO CL ENTRY: 'Revert "Fix 00900_long_parquet_load"'. #35301 (Vladimir C).
NOT FOR CHANGELOG / INSIGNIFICANT
- [RFC] Update jemalloc to 5.3RC #33057 (Azat Khuzhin).
- Remove useless setting experimental_query_deduplication_send_all_part_uuids #34387 (nvartolomei).
- Apply join_use_nulls on types before join #34529 (Vladimir C).
- Adjust 01681_arg_min_max_if_fix #34612 (Vladimir C).
- Check overflow in addSeconds/Minues/etc functions #34619 (Vladimir C).
- Update version after release #34677 (Mikhail f. Shiryaev).
- Fix
positionUTF8
on aarch64 #34683 (Vladimir C). - Update version_date.tsv after v22.2.2.1-stable #34685 (github-actions[bot]).
- Fix ZooKepper paths in zero_copy_schema_converter.py #34686 (ianton-ru).
- Changelog for version 22.2 #34687 (Alexey Milovidov).
- Follow up to PR #33698 #34689 (Vladimir C).
- Always update ProfileEvents (even on exceptions) #34690 (nvartolomei).
- Function encodeURLComponent minor fixes #34695 (Maksim Kita).
- CMake llvm add status message if not used #34698 (Maksim Kita).
- Adding noexcept for move constructor SharedContextHolder #34699 (Rajkumar Varada).
- Add new team members to company page #34701 (Cody Baker).
- Fix flaky 00502_custom_partitioning_local #34714 (Azat Khuzhin).
- Workaround for a bug in NuRaft library #34715 (Azat Khuzhin).
- Fix possible memory_tracker use-after-free (for async s3 writes) for merges/mutations #34717 (Azat Khuzhin).
- Add taiyang-li to trusted contributors #34729 (Vladimir C).
- rename name in ci check #34730 (flynn).
- Performance tests fix H3 #34731 (Maksim Kita).
- Enable async writes to S3. #34734 (Nikolai Kochetov).
- Add a patch release for stable/lts packages to release.py #34740 (Mikhail f. Shiryaev).
- Print only total profile events for --profile-events-delay-ms=-1 #34749 (Azat Khuzhin).
- Fix
parallel_reading_from_replicas
withclickhouse-bechmark
#34751 (Azat Khuzhin). - Submodules are mandatory #34753 (Alexey Milovidov).
- Changelog for version 22.2 #34758 (Alexey Milovidov).
- Sort additional_html_urls in test report in CI #34770 (Vladimir C).
- Fix undefined __pthread_mutex_lock/unlock for glibc 2.34+/DISABLE_HERMETIC_BUILD #34771 (Azat Khuzhin).
- jemalloc: fix includes order to avoid overlaps #34783 (Azat Khuzhin).
- Fix using host/port from config for client #34791 (Vladimir C).
- Update links for 22.2 and 22.3 release webinars #34814 (Cody Baker).
- Add opensee blog post #34817 (Cody Baker).
- Try remove trash from StorageFileLog #34819 (Alexander Tokmakov).
- Fix generating system.build_options #34823 (Azat Khuzhin).
- Comment output header for team keys #34828 (Mikhail f. Shiryaev).
- Fix untuple condition in IN function #34836 (Vladimir C).
- Improve certificate reloader #34887 (Filatenkov Artur).
- Update DiskS3.cpp #34889 (Nikolai Kochetov).
- Clang tidy improvements #34893 (Maksim Kita).
- Update version_date.tsv after v22.2.3.5-stable #34898 (github-actions[bot]).
- Add check_prerequisites to release.py #34901 (Vladimir C).
- Fix filelog storage data paths #34912 (Kseniia Sumarokova).
- Update version_date.tsv after v22.1.4.30-stable #34913 (github-actions[bot]).
- Fix alignment for aligned_alloc() to fix build for glibc2.35+ #34919 (Azat Khuzhin).
- Stop processing multiqueries in clickhouse-client/local on SIGINT #34923 (Azat Khuzhin).
- Fix some code comments style #34935 (hongbin).
- Adjust couple of tests for aarch64 #34951 (Vladimir C).
- Add benchmarks #34960 (Filatenkov Artur).
- Catch exception in ~WriteBufferFromS3 #34963 (Vladimir C).
- Disable memory checking test with thread sanitizer #34964 (alesapin).
- Print number of available logical cores in configuration #34972 (Robert Schulze).
- Fix possible "nmalloc >= ndalloc" jemalloc assertion #34973 (Azat Khuzhin).
- Add some benchmarks #34974 (Filatenkov Artur).
- Fix typo #34975 (Nikita Evsyukov).
- Fix signal-unsafe TSan report in client #34988 (Azat Khuzhin).
- Fix non-MergeTree engines for system.*_log #34989 (Azat Khuzhin).
- Fix test_storage_postgresql::test_concurrent_queries #34991 (Kseniia Sumarokova).
- Fix race between INSERT async_insert=1 and system.asynchronous_inserts #34992 (Azat Khuzhin).
- Add option to clickhouse-test to skip aarch64 build #34995 (Vladimir C).
- clickhouse obfuscator aarch64 fix #35005 (Vladimir C).
- Fix tutorial link #35014 (Filatenkov Artur).
- ExecutableUDF function deterministic in scope of query fix #35018 (Maksim Kita).
- fasttest: add timings for "Test time" column in the results table #35019 (Azat Khuzhin).
- Always write preprocessed config in XML format #35020 (Nikita Mikhaylov).
- Fix read old records from logs #35021 (alesapin).
- Fix trim function #35046 (Vladimir C).
- Skip 01086_odbc_roundtrip for aarch, disable force_tests #35058 (Vladimir C).
- Remove useless define #35066 (Alexey Milovidov).
- Take flush_time into account for scheduling background flush of the Buffer #35071 (Azat Khuzhin).
- Try to fix failed tests #35073 (Kruglov Pavel).
- Do not hide exceptions during mutations #35080 (Azat Khuzhin).
- Put downloaded artifacts to a temorary path #35088 (Mikhail f. Shiryaev).
- Get rid of duplicate query planing. #35094 (Amos Bird).
- Temporary supress move partition long for storage S3 #35097 (alesapin).
- Fix inconsistency in DiskLocal #35099 (Alexander Tokmakov).
- Try to build llvm for Aarch64 #35103 (Nikita Mikhaylov).
- fix build fail with gcc #35123 (zhanghuajie).
- Fix hardcoded page size #35129 (Nikita Mikhaylov).
- Delete nodes with attributes
remove
orreplace
if they didn't merge #35141 (Nikita Mikhaylov). - Upgrade icu to icu-release-70-1 #35142 (Yong Wang).
- Merging #33398 #35157 (Nikita Mikhaylov).
- fix typos #35174 (Zhang Yifan).
- Adjust max_memory_usage in external_aggregation.sql #35194 (Vladimir C).
- MaterializedMySQL protocol example fix #35198 (Maksim Kita).
- Remove useless files #35199 (Alexey Milovidov).
- Remove useless file #35200 (Alexey Milovidov).
- Add Segment script to <head> of docs pages #35203 (Rich Raposa).
- Cache fix #35209 (Kseniia Sumarokova).
- Use C++14 aliases for some type traits #35212 (Robert Schulze).
- Remove redundant configs for TestFlows #35223 (Alexey Milovidov).
- Correct some integration tests #35224 (Alexey Milovidov).
- Change timezone in Docker #35225 (Alexey Milovidov).
- Change timezone example in server config #35226 (Alexey Milovidov).
- Adjust timezone in performance tests #35227 (Alexey Milovidov).
- Remove "bugs" that do not exist anymore #35228 (Alexey Milovidov).
- Change timezone in stateful tests. #35229 (Alexey Milovidov).
- Moved submodules from ClickHouse-Extras to ClickHouse #35232 (Alexey Milovidov).
- Remove "bugs" that do not exist anymore #35242 (Alexey Milovidov).
- Update CachedReadBufferFromRemoteFS.cpp #35245 (Kseniia Sumarokova).
- Add a test for #34682 #35247 (Alexey Milovidov).
- Enable clang tidy for header files #35248 (Maksim Kita).
- Fix possible 01506_buffer_table_alter_block_structure_2 flakiness #35249 (Azat Khuzhin).
- Mark build action as failed if it was retried and there was no succeeded builds #35260 (Azat Khuzhin).
- Fix flaky test #35261 (Alexander Tokmakov).
- Fix logical error in remote fs cache #35275 (Kseniia Sumarokova).
- Fix code style and other minor corrections after implementing allow_no_password. #35276 (Vitaly Baranov).
- Add remote fs cache optimization #35278 (Kseniia Sumarokova).
- Remove utils/github-hook/hook.py #35280 (Vitaly Baranov).
- Fix test #35282 (Kseniia Sumarokova).
- Fix 00284_external_aggregation.sql #35293 (Alexander Tokmakov).
- Fix 00900_long_parquet_load #35299 (Vladimir C).
- Maybe fix use-after-free inside S3 upload thread #35305 (Nikolai Kochetov).
- Modified python packages #35306 (Lalit Srikant).
- Fix disappeared host and port from client help message #35309 (Kruglov Pavel).
- Changelog 22.3 #35344 (Alexey Milovidov).
- Replace a few uses of enable_if for SFINAE by concepts #35347 (Robert Schulze).