Commit Graph

59457 Commits

Author SHA1 Message Date
Olga Revyakina
5826432172 Headers order changed 2021-03-12 13:00:46 +03:00
Anton Ivashkin
ace628d565 Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into s3_zero_copy_replication 2021-03-12 12:58:32 +03:00
vdimir
0eba776fa6
Fix ambigous column error in joins_in_memory 2021-03-12 12:56:43 +03:00
Nikita Mikhaylov
339c12f510
suppress boost geometry UBSan 2021-03-12 12:39:40 +03:00
Vasily Nemkov
2cf39d3ac4 Excluded 01702_system_query_log from arcadia runs 2021-03-12 11:25:01 +02:00
tavplubix
2acbfd834a
Merge branch 'master' into stress_test_results 2021-03-12 12:11:33 +03:00
Roman Bug
637aacdaa4
Update docs/en/sql-reference/aggregate-functions/reference/avg.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-12 11:49:38 +03:00
Roman Bug
1688b1a8ad
Update docs/ru/sql-reference/aggregate-functions/reference/avg.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-03-12 11:49:32 +03:00
alexey-milovidov
59e38d77fd
Update CHANGELOG.md 2021-03-12 11:41:20 +03:00
alexey-milovidov
e5e5877808
Merge pull request #21618 from ClickHouse/changelog-21.3
Changelog 21.3
2021-03-12 11:40:07 +03:00
alexey-milovidov
bf933cf39d
Update CHANGELOG.md 2021-03-12 11:39:58 +03:00
alexey-milovidov
87bce6dfa7
Update CHANGELOG.md 2021-03-12 11:39:04 +03:00
alexey-milovidov
4f35cbf937
Update CHANGELOG.md 2021-03-12 11:37:56 +03:00
alexey-milovidov
b030bfedd7
Update CHANGELOG.md 2021-03-12 11:34:55 +03:00
alexey-milovidov
87368befea
Merge pull request #21646 from azat/storage-join-type-conversion
Add type conversion for StorageJoin (previously led to SIGSEGV)
2021-03-12 11:21:56 +03:00
alexey-milovidov
9e0d53c0e6
Merge pull request #20058 from excitoon-favorites/remotehostfilterdisallowall
Fixed open behavior of remote host filter in case when there is `remote_url_allow_hosts` section in configuration but no entries there
2021-03-12 11:14:15 +03:00
alesapin
cca05da7fa
Merge pull request #16481 from amosbird/jbodbalance
Auto-balance big parts in JBOD array
2021-03-12 11:07:47 +03:00
alesapin
b98e27ba82
Merge branch 'master' into s3_zero_copy_replication 2021-03-12 11:07:20 +03:00
alexey-milovidov
3b2a7c5a4f
Merge pull request #21649 from javainthinking/master
Alibaba Cloud Managed Service for ClickHouse
2021-03-12 08:36:18 +03:00
alexey-milovidov
7a0ca6dddd
Update cloud.md 2021-03-12 08:36:03 +03:00
Xiang Zhou
ceae3f841c Add cloud MD in jp. 2021-03-12 11:30:47 +08:00
Xiang Zhou
56d615ea15 Add cloud MD in zh and en. 2021-03-12 11:16:02 +08:00
Xiang Zhou
8cf0828117 Update cloud doc zh. 2021-03-12 10:48:23 +08:00
olgarev
183868dfcb
Apply suggestions from code review
Co-authored-by: Nikita Mikhaylov <mikhaylovnikitka@gmail.com>
2021-03-12 05:12:28 +03:00
Alexander Kuzmenkov
2827042787
Update fuzzing-clickhouse.md 2021-03-12 02:34:48 +03:00
Alexander Kuzmenkov
6cfac215fe
Update fuzzing-clickhouse.md 2021-03-12 01:11:46 +03:00
Alexander Kuzmenkov
911961941a
Merge pull request #21608 from ClickHouse/aku/fuzzer-article
add an article about ast-based fuzzer
2021-03-11 23:57:23 +03:00
Alexander Kuzmenkov
9f8e61b734
Update fuzzing-clickhouse.md 2021-03-11 23:57:11 +03:00
alexey-milovidov
494c6294b3
Merge pull request #21597 from qoega/fixes-clang-12-cmake-3.19
Prepare to use clang 12 and cmake 3.19
2021-03-11 23:45:53 +03:00
Denis Glazachev
290a6d273e
Add Kerberos support for authenticating existing users when accessing over HTTP 2021-03-11 23:41:10 +03:00
Azat Khuzhin
c2372420ee Add type conversion for StorageJoin (previously led to SIGSEGV)
Found with fuzzer under UBsan [1]:

  [1]: https://clickhouse-test-reports.s3.yandex.net/21579/61d40c3600ba6a1c6d6c0cf4919a3cdaebb3a31f/fuzzer_ubsan/report.html#fail1
2021-03-11 23:28:32 +03:00
Azat Khuzhin
65f90f2ce9 Fix distributed requests cancellation with async_socket_for_remote=1
Before this patch for distributed queries, that requires cancellation
(simple select from multiple shards with limit, i.e. `select * from
remote('127.{2,3}', system.numbers) limit 100`) it is very easy to
trigger the situation when remote shard is in the middle of sending Data
block while the initiator already send Cancel and expecting some new
packet, but it will receive not new packet, but part of the Data block
that was in the middle of sending before cancellation, and this will
lead to some various errors, like:
- Unknown packet X from server Y
- Unexpected packet from server Y
- and a lot more...

Fix this, by correctly waiting for the pending packet before
cancellation.

It is not very easy to write a test, since localhost is too fast.

Also note, that it is not possible to get these errors with hedged
requests (use_hedged_requests=1) since handle fibers correctly.

But it had been disabled by default for 21.3 in #21534, while
async_socket_for_remote is enabled by default.
2021-03-11 21:55:21 +03:00
Azat Khuzhin
69b2b2a159 Fix fsync_part_directory for horizontal merge 2021-03-11 21:41:27 +03:00
Alexander Kuzmenkov
ae8585a183
Merge pull request #21580 from azat/git--arcadia_skip_list-union-merge
[RFC] Union merge for arcadia_skip_list.txt to avoid frequent conflicts
2021-03-11 21:10:38 +03:00
Alexander Kuzmenkov
4d7f418916 cleanup 2021-03-11 19:57:28 +03:00
Alexander Kuzmenkov
2e2257e261
Update fuzzing-clickhouse.md 2021-03-11 19:26:01 +03:00
Nikolai Kochetov
cc60059b50
Merge pull request #21196 from ClickHouse/improve-performance-group-by-multiple-fixed-keys-2
Save packed keys for GROUP BY with multiple fixed size keys
2021-03-11 18:28:14 +03:00
Nikita Mikhaylov
8e68edebea better test 2021-03-11 18:22:24 +03:00
Nikita Mikhaylov
87eb2592de add input_format_skip_unknown_fields 2021-03-11 18:22:24 +03:00
Nikita Mikhaylov
b434a2f0bd disable parallel parsing for grpc tests 2021-03-11 18:22:24 +03:00
Nikita Mikhaylov
761b369fa2 move to poco::event 2021-03-11 18:22:24 +03:00
Nikita Mikhaylov
f3ee129074 fix grpc 2021-03-11 18:22:24 +03:00
Nikita Mikhaylov
e7a1398def try fix tests 2021-03-11 18:22:24 +03:00
Nikita Mikhaylov
3372dd7b6a fix stupid bug 2021-03-11 18:22:24 +03:00
Nikita Mikhailov
3a7d48f3a4 style and tsan fix 2021-03-11 18:22:24 +03:00
Nikita Mikhailov
369c9da161 better 2021-03-11 18:22:24 +03:00
alexey-milovidov
eab35bfc7f Update ParallelParsingInputFormat.h 2021-03-11 18:22:24 +03:00
Nikita Mikhailov
91a418b3a9 better 2021-03-11 18:22:24 +03:00
Nikita Mikhailov
8b30bb0fb5 style 2021-03-11 18:22:24 +03:00
Nikita Mikhailov
61fdeb5897 better 2021-03-11 18:22:24 +03:00