Anton Ivashkin
6b1b80f5cc
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into s3_zero_copy_replication
2021-05-21 16:01:48 +03:00
Anton Ivashkin
29336a4a34
Use keep_s3_on_delet flag instead of DeleteOnDestroyKeepS3 state
2021-05-21 15:29:10 +03:00
Vladimir
d56d7145c1
Merge pull request #24250 from ucasFL/count-range
...
Add aggregate function rangeSum
2021-05-21 13:23:38 +03:00
Nikolai Kochetov
3cca5e8391
Merge pull request #24349 from ClickHouse/better-parallelism-for-fast-tests
...
Better parallelism for functional tests
2021-05-21 11:32:31 +03:00
alexey-milovidov
ddaf577be7
Merge pull request #24385 from ClickHouse/debug-documentation
...
Debug strange errors in documentation
2021-05-21 11:30:26 +03:00
Alexey Milovidov
cec9d48edc
Simply avoid validating AMP
2021-05-21 10:36:45 +03:00
alexey-milovidov
d4408d80df
Merge pull request #24384 from ClickHouse/fix-copyright-in-docs
...
Fix copyright in documentation
2021-05-21 10:27:37 +03:00
alexey-milovidov
af48a9baf1
Merge pull request #24379 from ClickHouse/fix-documentation-2
...
Fix diagnostics in documentation script
2021-05-21 10:27:20 +03:00
Alexey Milovidov
24f1856d5a
Add comment out of despair about low quality documentation scripts
2021-05-21 10:25:48 +03:00
Alexey Milovidov
be65d588a4
Debug strange errors in documentation
2021-05-21 10:19:53 +03:00
Maksim Kita
d78f9fc271
Merge pull request #24146 from azat/mysql-settings
...
Add settings (for connections) for MySQL storage engine
2021-05-21 10:04:11 +03:00
Maksim Kita
f65d44a5f6
Merge pull request #24364 from kitaisreal/aarch64-hash-tables-benchmark
...
AARCH64 hash tables benchmark
2021-05-21 09:59:36 +03:00
Alexey Milovidov
823e1f2221
Fix strange whitespace
2021-05-21 09:54:35 +03:00
Alexey Milovidov
11cbae4785
Fix copyright in documentation
2021-05-21 09:49:54 +03:00
Ilya Yatsishin
1aee5c730b
Merge pull request #24290 from ClickHouse/aku/fuzzer-connection-loss
2021-05-21 09:25:06 +03:00
Alexey Milovidov
a66c16ed03
Fix diagnostics in documentation script
2021-05-21 07:53:00 +03:00
alexey-milovidov
56871aafec
Update CHANGELOG.md
2021-05-21 07:47:18 +03:00
alexey-milovidov
04e3ddeffa
Merge pull request #24151 from azat/format-FROM-clause
...
Change FROM clause formatting (make it more human friendly)
2021-05-21 06:26:53 +03:00
alexey-milovidov
5de03390e0
Merge pull request #24285 from abyss7/issue-23901
...
Allow empty HTTP headers
2021-05-21 05:21:06 +03:00
alexey-milovidov
b1d1319894
Update CHANGELOG.md
2021-05-21 03:57:52 +03:00
alexey-milovidov
b9e61c6e69
Update CHANGELOG.md
2021-05-21 03:57:27 +03:00
alexey-milovidov
52be6ace23
Merge pull request #24098 from nikitamikhaylov/changelog-20.5
...
Changelog 21.5
2021-05-21 03:54:33 +03:00
alexey-milovidov
4d42acba6a
Update CHANGELOG.md
2021-05-21 03:54:25 +03:00
alexey-milovidov
b2c828f0b6
Update CHANGELOG.md
2021-05-21 03:52:18 +03:00
Maksim Kita
a896af572e
Fixed comment
2021-05-21 01:06:29 +03:00
Maksim Kita
0d174831c9
Updated X86 benchmarks
2021-05-21 00:56:33 +03:00
Maksim Kita
d17adeecaf
AARCH64 hash tables benchmark
2021-05-20 20:50:37 +00:00
Nikolai Kochetov
48ce2ce500
Fix script
2021-05-20 22:57:06 +03:00
Azat Khuzhin
4f41ebcae3
Add settings (for connections) for MySQL storage engine
...
Default settings are not very efficient, since they do not even reuse
connections.
And when each query requires connection you can have only ~80 QPS, while
by simply enabling connection reuse (connection_auto_close=false) you
can have ~500 QPS (and by increasing connection_pool_size you can have
better QPS throughput).
So this patch allows to pass through some connection related settings
for the StorageMySQL engine, like:
- connection_pool_size=16
- connection_max_tries=3
- connection_auto_close=true
v2: remove connection_pool_default_size
v3: remove num_tries_on_connection_loss
2021-05-20 22:44:52 +03:00
Maksim Kita
2c4920186b
Merge pull request #24342 from kitaisreal/jit-support-aarch64-compilation
...
LLVM JIT support AARCH64
2021-05-20 22:24:59 +03:00
robot-clickhouse
471142043f
Auto version update to [21.7.1.1] [54452]
2021-05-20 22:23:34 +03:00
robot-clickhouse
7f8b8e6ade
Auto version update to [21.6.1.6891] [54451]
2021-05-20 22:20:07 +03:00
Nikolai Kochetov
87e73a970e
Fix style
2021-05-20 21:18:44 +03:00
Nikolai Kochetov
e66e3e9271
Fix style
2021-05-20 21:11:12 +03:00
Azat Khuzhin
59d4d42b5e
Mark some tests as long
2021-05-20 21:04:12 +03:00
Azat Khuzhin
8b438bcd3c
Change formatting of subqueries (make it more human friendly)
...
Fix trailing whitespaces in FROM/IN clause with subqueries in multiline
mode, and also changes the output of the queries slightly in a more
human friendly way.
Before:
$ clickhouse-format <<<'select * from system.one, (select * from system.one)'
SELECT *
FROM system.one
,
(
SELECT *
FROM system.one
)
After:
$ clickhouse-format <<<'select * from system.one, (select * from system.one)'
SELECT *
FROM system.one,
(
SELECT *
FROM system.one
)
v2: Fix subqueries formatting in a different way
v3: Adjust *.reference in tests
v4: Fix modernize-loop-convert in ASTTablesInSelectQuery
2021-05-20 21:04:12 +03:00
Nikolai Kochetov
386cbf751c
Better parallelizm for fast tests.
2021-05-20 19:46:15 +03:00
Nikolai Kochetov
9d4927a5b9
Better parallelizm for fast tests.
2021-05-20 19:44:35 +03:00
robot-clickhouse
0037713dd3
Update version_date.tsv after release 21.5.5.12
2021-05-20 19:21:45 +03:00
Nikolai Kochetov
fa88e8725a
Better parallelizm for fast tests.
2021-05-20 19:02:46 +03:00
alesapin
333e291b5d
Merge pull request #24307 from ClickHouse/one_more_error_clickhouse_test
...
One more error to retry in clickhouse-test
2021-05-20 18:58:50 +03:00
tavplubix
acd952d701
Merge pull request #24309 from ClickHouse/fix_rename_matview
...
Fix rename MaterializedView
2021-05-20 18:20:38 +03:00
vdimir
09d63545b0
Return float in segmentLengthSum for float args, add tests
2021-05-20 17:43:24 +03:00
Maksim Kita
cf5f36b70e
LLVM JIT support AARCH64
2021-05-20 14:09:32 +00:00
vdimir
c8cbde1b89
Merge branch 'master' into count-range
2021-05-20 16:51:51 +03:00
Alexander Kuzmenkov
84e4b19ad3
Merge pull request #24338 from ClickHouse/aku/fasttest-retries
...
remove retries from fast test
2021-05-20 16:26:38 +03:00
mergify[bot]
19f48e2a9b
Merge branch 'master' into aku/fuzzer-connection-loss
2021-05-20 13:05:34 +00:00
Alexander Kuzmenkov
1b0bcfe022
remove retries from fast test
2021-05-20 15:31:56 +03:00
Ivan Lezhankin
3c6b69a430
Fix test
2021-05-20 15:12:09 +03:00
Maksim Kita
bee67189a1
Merge pull request #24333 from kitaisreal/pod-array-insert-in-the-middle-tests
...
PODArray insert in the middle tests
2021-05-20 15:00:45 +03:00