Commit Graph

80653 Commits

Author SHA1 Message Date
alesapin
084a1b5ac2
Merge pull request #32988 from JackyWoo/keeper_handler_remove_operation_when_response_sent
keeper handler should remove operation when response sent
2021-12-21 17:25:40 +03:00
alesapin
3ab250a869 Add region name: 2021-12-21 16:47:23 +03:00
N. Kolotov
cb77320566 Fixed test env, removed chaining. 2021-12-21 16:28:21 +03:00
alesapin
37d90e071f Group params 2021-12-21 16:16:01 +03:00
alesapin
49a50bbdc9 Merge branch 'master' into add_jepsen_test 2021-12-21 16:15:40 +03:00
alesapin
decd53b1e5
Merge pull request #33005 from ClickHouse/add_workflow_rerun
Add backport workflow rerun
2021-12-21 16:14:29 +03:00
alesapin
45aef649a1 Add backport workflow rerun 2021-12-21 16:13:44 +03:00
alesapin
af7cd00e30 Don't use too powerful key 2021-12-21 16:05:02 +03:00
mergify[bot]
7da6d8b310
Merge branch 'master' into fix_IP_conversion 2021-12-21 12:16:05 +00:00
alesapin
157d4a7f7c Add SSH key 2021-12-21 15:08:33 +03:00
alesapin
627bd2cec4 Add Keeper Jepsen check to new CI 2021-12-21 15:07:10 +03:00
alexey-milovidov
7effb45317
Merge pull request #32968 from amosbird/crosssharedbuild
Hermetic shared build
2021-12-21 14:57:51 +03:00
alexey-milovidov
d8c327d4ff
Merge pull request #32994 from havardk/logperm
Fix weird permission on log directories
2021-12-21 14:54:39 +03:00
alesapin
323e1a5087 Add woboq workflow 2021-12-21 14:23:17 +03:00
alesapin
5929d65e9e Add regular job 2021-12-21 14:22:47 +03:00
alesapin
a89a05c0da Finally woboq is ready 2021-12-21 14:16:21 +03:00
lgbo-ustc
1f59ce760c typo 2021-12-21 19:06:00 +08:00
mergify[bot]
1daf469799
Merge branch 'master' into clickhouse-test-unknown 2021-12-21 10:55:11 +00:00
Haavard Kvaalen
9a2b0680a1 Fix weird permission on log directories
Several log directories for integration tests were created with full
permissions for "others" but no permission for the owner of the
directory.  This caused issues when trying to run integration tests
again without manually wiping files from previous runs.  The test would
fail with "PermissionError: [Errno 13] Permission denied: 'logs'".

The intention may have been to do the equivalent of 'chmod o+rwx logs',
but it instead did the equivalent of 'chmod 007 logs'.
2021-12-21 11:50:54 +01:00
Kseniia Sumarokova
c5dfbfc6f5
Merge pull request #32992 from ClickHouse/kssenii-patch-2
Fix typo
2021-12-21 12:43:32 +03:00
Kseniia Sumarokova
de7a5dd1e6
Update ExpressionListParsers.cpp 2021-12-21 12:39:31 +03:00
Maksim Kita
c343623fa4
Merge pull request #32990 from dalei2019/patch-1
Update role.md
2021-12-21 12:01:29 +03:00
Raúl Marín
eddccb0065 Merge remote-tracking branch 'blessed/master' into kill_scalar_github 2021-12-21 10:00:17 +01:00
alesapin
754785fee5 Better container 2021-12-21 11:07:24 +03:00
dalei2019
11c85fe66b
Update role.md 2021-12-21 16:03:37 +08:00
kssenii
ebcb66a361 Fix 2021-12-21 10:58:02 +03:00
taiyang-li
2597925724 merge master 2021-12-21 15:55:39 +08:00
mergify[bot]
7cf7c5d247
Merge branch 'master' into keeper_handler_remove_operation_when_response_sent 2021-12-21 07:55:19 +00:00
alesapin
0e7f63c4d1
Merge pull request #32987 from kssenii/fix-clang-tidy
Fix clang-tidy
2021-12-21 10:52:17 +03:00
alesapin
532b01c371 Followup 2021-12-21 10:49:22 +03:00
Kseniia Sumarokova
e0f2fe457d
Update test.py 2021-12-21 10:29:27 +03:00
taiyang-li
cff3c20742 Merge branch 'hive_table' of https://github.com/bigo-sg/ClickHouse into bigo_hive_table 2021-12-21 15:01:23 +08:00
taiyang-li
2fd63f9381 rename some symboles 2021-12-21 15:00:47 +08:00
taiyang-li
40aa359201 refactor storage hive 2021-12-21 14:44:31 +08:00
mergify[bot]
649226853d
Merge branch 'master' into fix-clang-tidy 2021-12-21 06:05:57 +00:00
Azat Khuzhin
4230f04f72 Fix UB in LimitReadBuffer in case of unexpected EOF
Fixes the following possible assertions:
- ./src/IO/ReadBuffer.h:58: bool DB::ReadBuffer::next(): Assertion `!hasPendingData()' failed.
- ./src/IO/LimitReadBuffer.cpp:17: virtual bool DB::LimitReadBuffer::nextImpl(): Assertion `position() >= in->position()' failed.

Fixes: 02151_http_s_structure_set_eof
2021-12-21 08:38:41 +03:00
Azat Khuzhin
08ced87880 Rework MultipartReadBuffer::skipToNextBoundary()
As suggested by @vitlibar
2021-12-21 08:38:41 +03:00
Azat Khuzhin
d7c7a91f66 Check that at least one boundary exist in HTMLForm::readMultipart() 2021-12-21 08:38:41 +03:00
Azat Khuzhin
4dfa9324d1 Check for EOF in MultipartReadBuffer::skipToNextBoundary()
Otherwise you may hit internal assertion when client goes away:

    clickhouse-server: ./src/Server/HTTP/HTMLForm.cpp:245: bool DB::HTMLForm::MultipartReadBuffer::skipToNextBoundary(): Assertion `boundary_hit' failed.

Fixes: 02151_http_s_structure_set_eof
2021-12-21 08:38:41 +03:00
Azat Khuzhin
7193bb9579 Add a test with EOF during creating set over HTTP
v2: update some comments
2021-12-21 08:38:41 +03:00
JackyWoo
7a19570853 keeper handler should remove operation when response sent 2021-12-21 11:43:14 +08:00
lgbo-ustc
44c0f0e680 rewrite comments 2021-12-21 10:59:23 +08:00
lgbo-ustc
fb1214efeb fixed code style 2021-12-21 10:56:57 +08:00
lgbo-ustc
eb9e9bd47a fixed a bug 2021-12-21 10:50:25 +08:00
lgbo-ustc
2e2354be40 1. add tryDel and getOrTrySet in LRUCache
2. fixed bugs in LRUCache for evicting elements
2021-12-21 10:39:59 +08:00
lgbo-ustc
2c67516432 1. fixed code style
2. fixed bugs in lru cache
2021-12-21 09:44:04 +08:00
kssenii
30996b2448 Fix 2021-12-21 01:19:51 +03:00
N. Kolotov
66eb6bf560 Added test to check client option --echo. 2021-12-21 00:59:35 +03:00
alexey-milovidov
04fb8aeaa5
Merge pull request #32946 from antonio2368/feature/hints-for-settings
Hints for invalid settings in query and HTTP requests
2021-12-21 00:52:42 +03:00
kssenii
175ad8a989 Fix 2021-12-21 00:20:08 +03:00