Alexey Milovidov
5558a224b0
Skip CatBoost tests under MSan
2021-04-25 05:25:46 +03:00
alexey-milovidov
3f0cf7b995
Merge pull request #23601 from ClickHouse/cleanup-rocksdb-cmake
...
Remove some garbage from RocksDB CMakeLists
2021-04-25 04:12:11 +03:00
alexey-milovidov
a0df2f64a7
Merge branch 'master' into cleanup-rocksdb-cmake
2021-04-25 04:11:50 +03:00
alexey-milovidov
1c472b014d
Merge pull request #23517 from azat/flaky-tests-v21.6
...
Fix function tests flaps
2021-04-25 04:08:49 +03:00
alexey-milovidov
6191f30892
Merge pull request #23595 from azat/fuzzer-tupleElement-formatting
...
Fix inconsistent formatting for tupleElement (for fuzzer)
2021-04-25 04:03:39 +03:00
alexey-milovidov
601108fb1c
Merge pull request #23552 from filimonov/fix_stop_command
...
Fix restart / stop command hanging.
2021-04-25 02:42:31 +03:00
Alexey Milovidov
2450fa1958
Minor adjustments
2021-04-25 02:42:18 +03:00
Alexey Milovidov
f2d67dd207
Merge branch 'master' into fix_stop_command
2021-04-25 02:39:39 +03:00
mergify[bot]
c24c09bebd
Merge branch 'master' into flaky-tests-v21.6
2021-04-24 23:33:43 +00:00
alexey-milovidov
025d40ade6
Merge pull request #23553 from ClickHouse/aku/trace-fg
...
export trace log from stateless tests in flamegraph-friendly format
2021-04-25 02:30:35 +03:00
alexey-milovidov
1ffa63b20a
Merge pull request #23598 from ClickHouse/paths-with-whitespaces
...
Somewhat better handling of paths in CMake (incomplete)
2021-04-25 01:58:28 +03:00
alexey-milovidov
b168cbfb29
Merge pull request #23597 from ClickHouse/remove-trash-cmake
...
Remove unneeded code from CMakeLists
2021-04-25 01:56:37 +03:00
alexey-milovidov
d13d543811
Merge pull request #23600 from ClickHouse/reproducible-build-2
...
Avoid possible build dependency on locale and filesystem order
2021-04-25 01:55:28 +03:00
alexey-milovidov
d5f444cc21
Merge pull request #23599 from ClickHouse/remove-old-trash
...
Remove old trash (a little)
2021-04-25 01:52:45 +03:00
Alexey Milovidov
3ad66b422f
Remove some garbage from RocksDB CMakeLists
2021-04-25 01:21:27 +03:00
Azat Khuzhin
a5a8ecfe42
Fix inconsistent formatting for tupleElement (for fuzzer)
...
fuzzer sometimes [1] may inserts tupleElement() created from ASTLiteral:
Function_tupleElement, 0xx
-ExpressionList_, 0xx
--Literal_Int64_255, 0xx
--Literal_Int64_100, 0xx
And in this case it will be printed as "255.100", which
later will be parsed as float, and formatting will be
inconsistent.
So instead of printing it as regular tuple,
let's print it as ExpressionList instead (i.e. with ", " delimiter).
Simple reproducer:
void ast()
{
auto arg1 = std::make_shared<ASTLiteral>(Field(255));
auto arg2 = std::make_shared<ASTLiteral>(Field(100));
auto func = makeASTFunction("tupleElement", arg1, arg2);
auto ast = func;
std::cerr << ast->formatForErrorMessage() << std::endl;
std::cerr << ast->dumpTree() << std::endl;
}
[1]: https://clickhouse-test-reports.s3.yandex.net/23517/f1187aeb69109c88f0be978b8083080c7a843820/fuzzer_debug/report.html#fail1
2021-04-25 00:30:17 +03:00
alexey-milovidov
c489355357
Merge pull request #23561 from ClickHouse/stress-test-less-oom
...
Less chance of OOM in stress tests
2021-04-24 23:16:50 +03:00
Alexey Milovidov
2d3623b011
Remove build dependency on CMAKE_SYSTEM_NAME
2021-04-24 23:05:08 +03:00
Alexey Milovidov
3705dbfabc
Avoid possible build dependency on locale and filesystem order
2021-04-24 23:01:07 +03:00
Alexey Milovidov
6f05c447ad
Remove old trash
2021-04-24 22:54:44 +03:00
Alexey Milovidov
2e0ac4b5ca
Somewhat better support for paths with whitespaces
2021-04-24 22:48:44 +03:00
Alexey Milovidov
4ff812db7f
Maybe better support for paths with whitespaces
2021-04-24 22:47:52 +03:00
Alexey Milovidov
f0580b3f72
Remove unneeded code from CMakeLists
2021-04-24 22:26:00 +03:00
mergify[bot]
51c16a6b7d
Merge branch 'master' into flaky-tests-v21.6
2021-04-24 19:11:52 +00:00
alexey-milovidov
280c0666a5
Merge pull request #23559 from ClickHouse/reproducible-build
...
Reproducible build
2021-04-24 21:26:31 +03:00
Azat Khuzhin
313b576aec
Improve retry logic in 01675_distributed_bytes_to_delay_insert_long
...
https://clickhouse-test-reports.s3.yandex.net/23517/414d8d0634ea5e3f05d30f53df8531da54a7ff50/functional_stateless_tests_(ubsan).html#fail1
2021-04-24 15:18:01 +03:00
robot-clickhouse
d6854e80f7
Update version_date.tsv after release 21.3.8.76
2021-04-24 14:32:48 +03:00
robot-clickhouse
a7caafa38c
Update version_date.tsv after release 21.4.5.46
2021-04-24 14:10:50 +03:00
Azat Khuzhin
414d8d0634
Mark 01675_distributed_bytes_to_delay_insert as long
...
https://clickhouse-test-reports.s3.yandex.net/23517/416bacc341a815b1b2d28ae24a31e13982ff5a0f/functional_stateless_tests_flaky_check_(address)/test_run.txt.out.log
2021-04-24 09:01:58 +03:00
alexey-milovidov
20e897bc5a
Merge pull request #23301 from ClickHouse/fix_race_in_deduplication
...
Deduplication: check block version on removal
2021-04-24 04:59:00 +03:00
alexey-milovidov
d8e60d9ab6
Update Install.cpp
2021-04-24 04:56:16 +03:00
alexey-milovidov
bcede10919
Merge pull request #23312 from vdimir/issue-23002
...
Correct sample_block in HashJoin for dict join with join_algorithm
2021-04-24 04:40:43 +03:00
alexey-milovidov
2cfc2c8825
Merge pull request #23397 from CurtizJ/better-move-to-prewhere
...
Allow to move more conditions to PREWHERE
2021-04-24 04:39:33 +03:00
alexey-milovidov
877d245d8f
Merge pull request #23462 from zhang2014/fix/ISSUE-23310
...
ISSUES-23310 Try fix MySQL 8.0 address already in use
2021-04-24 04:17:21 +03:00
filimonov
d8b57c7d66
Update Install.cpp
2021-04-24 03:15:48 +02:00
alexey-milovidov
c66e715f49
Merge pull request #23433 from ClickHouse/tavplubix-patch-1
...
Fix `Cannot unlink file` in `dropIfEmpty()` with multidisk confuguration
2021-04-24 03:34:06 +03:00
alexey-milovidov
cd1f14ba61
Update MergeTreeData.cpp
2021-04-24 03:33:56 +03:00
alexey-milovidov
41ed8aab59
Merge pull request #23459 from CurtizJ/fix-replacing
...
Fix corner cases in vertical merges with ReplacingMergeTree
2021-04-24 03:30:44 +03:00
Alexey Milovidov
e9e4ab3813
Less chance of OOM in stress tests
2021-04-24 03:27:23 +03:00
alexey-milovidov
ca230224cf
Merge pull request #23549 from vdimir/issue-17718
...
Remove clashed columns from totals for StorageJoin
2021-04-24 03:19:00 +03:00
Alexey Milovidov
4648782a05
Remove build date from system.build_options
2021-04-24 02:10:32 +03:00
Alexey Milovidov
ea97a5a93a
Reproducible build #22113
2021-04-24 01:44:23 +03:00
Alexander Kuzmenkov
77f0be25b6
Update run.sh
2021-04-23 23:03:53 +03:00
Azat Khuzhin
416bacc341
Add retries into 01675_distributed_bytes_to_delay_insert (and tune delays)
2021-04-23 22:31:27 +03:00
Alexander Kuzmenkov
5f23acfb47
Update Dockerfile
2021-04-23 21:58:37 +03:00
Alexander Kuzmenkov
9f187b594c
Update run.sh
2021-04-23 21:51:26 +03:00
Alexander Kuzmenkov
294dd3c6cc
export trace log from stateless tests in flamegraph-friendly format
2021-04-23 21:50:02 +03:00
Mikhail Filimonov
3f07b09274
Fix for #20214
...
When pid file still exists, but process dead it was returning the pid.
2021-04-23 19:25:30 +02:00
Alexander Kuzmenkov
9f50b1855f
Merge pull request #23520 from ClickHouse/aku/pvs
...
fix pvs warnings
2021-04-23 18:55:48 +03:00
vdimir
9460989721
Remove clashed columns from totals for StorageJoin
2021-04-23 15:37:05 +03:00