Artem Zuikov
becc186c91
Add support for extended precision integers and decimals ( #13097 )
2020-08-19 14:52:17 +03:00
tavplubix
3b8ac01ed0
Merge pull request #13756 from ClickHouse/test-drop-database-race
...
Fix race condition in DROP DATABASE
2020-08-19 13:27:50 +03:00
Alexander Tokmakov
be6af3881a
remove retries
2020-08-19 13:05:40 +03:00
Alexey Milovidov
425297e9c9
Check that ya.make files are auto-generated
2020-08-19 12:40:28 +03:00
alexey-milovidov
1c40e3ca4e
Merge pull request #13867 from azat/00956_sensitive_data_masking-fix
...
Fix 00956_sensitive_data_masking flackiness
2020-08-19 12:33:48 +03:00
alexey-milovidov
1a33f6d0b8
Merge pull request #13866 from ClickHouse/remove-useless-code-zkutil
...
Remove useless code around zkutil
2020-08-19 12:32:08 +03:00
Alexey Milovidov
5a00941303
Fix "Arcadia"
2020-08-19 12:31:28 +03:00
alexey-milovidov
6d72777b6e
Merge pull request #13868 from ClickHouse/stratify-array-compact-nan
...
Stratify nans comparison in arrayCompact function
2020-08-19 11:53:58 +03:00
Yatsishin Ilya
677b313b4f
Merge remote-tracking branch 'origin' into unbundled-packager
2020-08-19 11:21:34 +03:00
hcz
be2ffe07ee
Add docs and tests
2020-08-19 16:07:51 +08:00
Yatsishin Ilya
31d31359f7
update dependencies
2020-08-19 10:55:40 +03:00
hcz
4bbcec3d33
Add defaultValueOfTypeName
2020-08-19 14:44:11 +08:00
zhang2014
2252775e83
Merge branch 'fix/materialize_integration_test' of github.com:zhang2014/ClickHouse into fix/materialize_integration_test
2020-08-19 10:32:59 +08:00
zhang2014
72182aa851
ISSUES-4006 trigger CI again
2020-08-19 10:29:07 +08:00
Nikita Mikhaylov
7592865e42
update test and bump ci
2020-08-19 05:51:59 +04:00
Nikita Mikhaylov
663ff938c2
Merge pull request #13855 from nikitamikhaylov/text-log-stress
...
Enabled text-log in stress test.
2020-08-19 05:01:52 +04:00
BohuTANG
26525a5eb1
Merge remote-tracking branch 'origin/master' into mysql_replica_gtid_issue_4006
2020-08-19 08:04:02 +08:00
alexey-milovidov
e1e0e8b234
Merge pull request #13870 from den-crane/patch-10
...
fixed typo arrayCompact
2020-08-19 00:19:11 +03:00
Denis Zhuravlev
f1421a31b7
fixed typo arrayCompact
2020-08-18 17:17:24 -03:00
myrrc
5ef5c889fd
moved the LC stuff to its implementations (some bugs remaining)
2020-08-18 23:09:41 +03:00
alexey-milovidov
23ccb0b6be
Merge pull request #13677 from hagen1778/merge-tree-fail-fast-on-rows-limit
...
[mergeTree]: fail fast if max_rows_to_read limit exceeded on parts scan
2020-08-18 22:24:39 +03:00
alexey-milovidov
fb2855c558
Merge pull request #13856 from den-crane/patch-10
...
fixed arrayCompact confusing description
2020-08-18 22:23:11 +03:00
Alexey Milovidov
acf312467e
Stratify nans comparison in arrayCompact function
2020-08-18 22:16:53 +03:00
Alexey Milovidov
5c0a9648fb
Remove even more useless code
2020-08-18 22:03:23 +03:00
Alexey Milovidov
eeb769d2d4
Remove useless code around zkutil
2020-08-18 22:02:07 +03:00
Azat Khuzhin
3ba9e9f6ce
Fix 00956_sensitive_data_masking flackiness
...
00956_sensitive_data_masking is still flacky even after #13748 [1].
[1]: https://clickhouse-test-reports.s3.yandex.net/10373/348ef1256ea8fb8f61109c33bbdd28daf46bdc8e/functional_stateless_tests_(debug).html#fail1
The problem is that it uses the following pattern:
clickhouse-client -q ... & # run some query in background
clickhouse-client -q 'show processlist' > log
grep background-query log
But there is no guarantee that the query in background will be executed before `show processlist`:
2020.08.18 02:52:47.916386 [ 26788 ] {98c36d38-f710-4dfb-af8f-61906abc163c} <Debug> executeQuery: (from [::1]:51650) SHOW PROCESSLIST
...
2020.08.18 02:52:47.926854 [ 26756 ] {086c64fa-713b-4f8c-b702-23bfea10a49c} <Debug> executeQuery: (from [::1]:51652) select count() from system.numbers where ignore('find_me_[hidden]')=0 and ignore('fwerkh_that_magic_string_make_me_unique') = 0 FORMAT Null
Fix the test by waiting until the query in backgroud will start, and use
limited numbers + sleepEachRow over system.numbers to reduce CPU usage.
2020-08-18 21:57:53 +03:00
tavplubix
d95470f7c3
Update docker/test/stress/run.sh
2020-08-18 20:52:54 +03:00
Nikolai Kochetov
793fd5bfb1
Merge pull request #13854 from markpapadakis/patch-1
...
Update PipelineExecutor.cpp
2020-08-18 19:00:05 +03:00
Alexander Tokmakov
e686616756
add exclusive DDLGuard for database
2020-08-18 18:15:27 +03:00
Vitaly Baranov
c800941ab7
Fix handling embedded config.
2020-08-18 18:08:50 +03:00
Mike
3b914ce76e
Update docs/en/development/CI.md
...
Co-authored-by: Ivan Blinkov <github@blinkov.ru>
2020-08-18 18:08:33 +03:00
Mike
2d1013b849
Update docs/en/development/CI.md
...
Co-authored-by: Ivan Blinkov <github@blinkov.ru>
2020-08-18 18:08:18 +03:00
BohuTANG
30b8159bb0
ISSUES-4006 fix empty gtid format when sets parse
2020-08-18 23:01:21 +08:00
Yatsishin Ilya
ab3b2c865d
lost chages
2020-08-18 17:30:21 +03:00
Alexander Kazakov
874fd4d068
A test to challenge a data race in StorageMemory ( #13858 )
2020-08-18 17:16:59 +03:00
Yatsishin Ilya
41078d67c5
Merge remote-tracking branch 'origin' into unbundled-packager
2020-08-18 17:16:49 +03:00
Yatsishin Ilya
ccbfd2e5df
Update deb-builder ubuntu version. Add clang-11, gcc-10. Add unbundled docker. Add test-base image.
2020-08-18 17:16:40 +03:00
Denis Zhuravlev
aa87134b2e
fixed arrayCompact confusing description
2020-08-18 10:00:37 -03:00
Nikita Mikhaylov
e7f8c0af52
done
2020-08-18 15:28:38 +03:00
roman
ac72148c3e
[tests]: adjust staeless/01064 test max_rows_to_read
limits
...
With default index_granularity=8096 CH always reads at least that number
of rows per selected part, but limit is checked afterwards. The optimization
that interrupts execution of queries based on approx number of rows to read
breaks the test. This means that test case is potetntially contains incorrect
limits.
2020-08-18 13:22:54 +01:00
Mark Papadakis
734f57462b
Update PipelineExecutor.cpp
...
Should have used back_edges instead of direct_edges
2020-08-18 15:09:23 +03:00
Ivan
cd22abbfe3
Expect empty content on verbose response
2020-08-18 14:59:57 +03:00
alexey-milovidov
fc7fb3b10a
Merge pull request #13853 from ClickHouse/revert-13809-fix-bug-website
...
Revert "Fix bug in "Quick Start" markup on the website"
2020-08-18 14:08:09 +03:00
alexey-milovidov
179c7d9a1e
Revert "Fix bug in "Quick Start" markup on the website"
2020-08-18 14:07:52 +03:00
Alexander Kuzmenkov
ce0dfe3fea
Fix server restart in fasttest
...
Remove the server data before sequential test run, so that there is no
interference from the failed parallel run.
Also fix some shellcheck warning.
2020-08-18 13:24:37 +03:00
Alexey Milovidov
5ac2ed9e5b
Generate ya.make #13572
2020-08-18 12:53:21 +03:00
Alexey Milovidov
b5af14d6a0
Generate ya.make
2020-08-18 12:47:29 +03:00
Alexey Milovidov
9615b1f06a
Generate ya.make
2020-08-18 12:46:02 +03:00
alexey-milovidov
3e6acf1329
Experiment with start/stop in stress test ( #13779 )
...
* Experiment with start/stop in stress test
* Support other installation options in "clickhouse start"
* Better diagnostics in install script
* Fixup
* Fixup
* Better diagnostics in stress test
* Update run.sh
2020-08-18 12:43:02 +03:00
alexey-milovidov
c26caf8339
Merge pull request #13840 from ClickHouse/normalize-query-uuid-aliases
...
Support UUID aliases in normalizeQuery
2020-08-18 12:35:55 +03:00