Maksim Kita
0fc4776424
Added another test case
2021-04-20 13:32:52 +03:00
Maksim Kita
457b75a196
Updated tests
2021-04-20 13:31:01 +03:00
Maksim Kita
cbc34afd55
Updated QueryAliasVisitor to set prefer_alias_to_column_name for aliases like _subquery
2021-04-20 13:16:29 +03:00
vdimir
3266bbb54c
TableJoin: forceHashJoin for dictionary_reader, add tests
2021-04-20 12:52:52 +03:00
Maksim Kita
1bdd699f20
Merge pull request #23332 from ClickHouse/add-test-7815
...
Add test for #7815
2021-04-20 12:02:50 +03:00
kssenii
f4d663bc56
Add test
2021-04-20 08:38:14 +00:00
kssenii
da7a4ac1ea
Better
2021-04-20 07:53:55 +00:00
Kseniia Sumarokova
b43656bf89
Merge pull request #22697 from TCeason/feature/add_MaterializeMySQL_sync_bytes_judgment
...
Add MySQL read history data bytes judgment
2021-04-20 10:26:42 +03:00
Azat Khuzhin
86069ffb40
Fix LOGICAL_ERROR for max_distributed_connections=0
2021-04-20 09:05:44 +03:00
Nikolai Kochetov
548fb52d24
Fix build.
2021-04-20 08:51:51 +03:00
Azat Khuzhin
2575d03a33
Add trace_log into stateless/stress test artifacts
2021-04-20 08:03:29 +03:00
alexey-milovidov
82b6f49516
Merge pull request #23321 from den-crane/patch-15
...
add check that p.pruning works
2021-04-20 05:59:45 +03:00
Anton Popov
0a0c510aa2
minor fixes
2021-04-20 05:51:07 +03:00
Alexey Milovidov
e60af08ce3
Fix flaky test 01666_merge_tree_max_query_limit.sh
2021-04-20 04:29:19 +03:00
alexey-milovidov
218cb71552
Merge pull request #23302 from Algunenano/fix_keeper_bench_linkage
...
Link keeper-bench to clickhouse_common_zookeeper
2021-04-20 04:20:11 +03:00
alexey-milovidov
af2499359b
Merge pull request #23334 from ClickHouse/revert-22609-datasketches-uniq
...
Revert "add uniqThetaSketch"
2021-04-20 03:37:19 +03:00
alexey-milovidov
62899436db
Revert "add uniqThetaSketch"
2021-04-20 03:34:21 +03:00
alexey-milovidov
3381d0dce9
Update 01602_max_distributed_connections.sh
2021-04-20 03:20:36 +03:00
Alexey Milovidov
8ef84eeaa1
Add test for #7815
2021-04-20 03:16:39 +03:00
robot-clickhouse
db82e9e3d5
Auto version update to [21.6.1.1] [54451]
2021-04-20 01:48:20 +03:00
robot-clickhouse
a584d78f19
Auto version update to [21.5.1.6601] [54450]
2021-04-20 01:45:38 +03:00
Alexey Milovidov
ac68dd8e97
Fix bad code; allow to INSERT into MySQL without database name
2021-04-20 00:29:37 +03:00
Azat Khuzhin
6fba6f7ddd
Disable min_bytes_to_use_mmap_io by default
...
Reading files using mmap() does not have any significant benefits over
plain read() [1].
[1]: https://gist.github.com/azat/3d6c8d82bdd91e7a38d997fd6bcfd574
And not only it does not have significant benefits, it also has some
issues, due to max_server_memory_usage (default to 90% of available
RAM), since when you read files with mmap() eventually process RSS may
exceed max_server_memory_usage, and in this case any allocation will
fail (with "Memory limit exceeded (total)") error (yes kernel will
unload pages, but likely it will happens after queries will starting to
fail), like in this test [2].
[2]: https://gist.github.com/azat/4813489828162e6c2ce131963c6a1acb
TL;DR;
Note that there was also an idea to take those mmap()'ed regions in
memory tracking (#23211 ), but there are some drawbacks (since accounting
mmap() is tricky, first of all you need to account only once per inode
for file and plus kernel can unload some pages and those memory will not
be used by the server anymore).
And as an adddition to #23211 there was #23212 , that adds
max_bytes_to_use_mmap_io, but since mmap is not a subject for memory
accounting there is no need in it.
2021-04-20 00:25:16 +03:00
Denny Crane
1dbbe2d075
add check that p.pruning works
2021-04-19 18:06:54 -03:00
Alexey Milovidov
feae382273
Fix mistake
2021-04-19 23:39:25 +03:00
kssenii
bb767b66d5
Add integration test
2021-04-19 20:39:22 +00:00
Alexey Milovidov
f492495507
Allow to INSERT into remote MySQL storage with empty database #19281
2021-04-19 23:36:13 +03:00
Alexey Milovidov
4ad4dbbc09
Regenerate Arcadia
2021-04-19 23:26:23 +03:00
alexey-milovidov
c87f846816
Merge pull request #21938 from azat/connection-settings
...
Apply idle_connnection_timeout/poll_interval after each query
2021-04-19 22:58:21 +03:00
alexey-milovidov
5b66086bc9
Merge pull request #23219 from azat/optimize_skip_unused_shards_rewrite_in-fix
...
Add type conversion for optimize_skip_unused_shards_rewrite_in
2021-04-19 22:45:35 +03:00
alexey-milovidov
4cef8c68f7
Merge pull request #23258 from azat/wundef
...
Add -Wundef for gcc builds
2021-04-19 22:45:22 +03:00
kssenii
cc5f49fbee
Fix
2021-04-19 19:43:22 +00:00
Alexey Milovidov
0784efa813
Better test
2021-04-19 22:42:39 +03:00
alexey-milovidov
f69f11e6cd
Merge pull request #23259 from azat/jemalloc-background_thread
...
Report an error if jemalloc.background_thread was requested
2021-04-19 22:37:16 +03:00
Alexey Milovidov
f7d3f77222
Fix bad test 01602_max_distributed_connections
2021-04-19 22:36:45 +03:00
Nikolai Kochetov
211967db96
Revert "Try use more mem for stack."
...
This reverts commit 93ae00bd0d
.
2021-04-19 22:35:47 +03:00
Kseniia Sumarokova
2d3b4af67a
Merge pull request #23231 from sevirov/sevirov-DOCSUP-8215-add_aliases_to_functions
...
DOCSUP-8215: Add aliases to functions
2021-04-19 22:27:26 +03:00
Nikolai Kochetov
08d1896950
Fix build.
2021-04-19 22:06:05 +03:00
Nikolai Kochetov
394cca2434
Fix build.
2021-04-19 21:36:45 +03:00
alexey-milovidov
f1706223be
Merge pull request #23275 from ClickHouse/fix-tests-hedged-requests
...
Fix integration tests for Hedged requests
2021-04-19 21:10:23 +03:00
Dmitriy
f1aef7e9a2
Edit and translate to Russian
...
Поправил английскую версию и выполнил перевод на русский язык.
2021-04-19 21:01:38 +03:00
Alexander Kuzmenkov
5a050f0573
Merge pull request #23246 from olgarev/revolg-DOCSUP-8224-remove_temporary_tables_from_system_tables
...
DOCSUP-8224: Fix showing temporary tables in system tables
2021-04-19 20:55:28 +03:00
Nikolai Kochetov
f6bdd35943
Try fix tests.
2021-04-19 20:55:18 +03:00
Alexander Kuzmenkov
e2077bc38d
Merge pull request #23247 from olgarev/revolg-DOCSUP-8655-Update_paths_to_the_catboost_model_configs
...
DOCSUP-8655: Update paths to the CatBoost model configs
2021-04-19 20:52:29 +03:00
Alexander Kuzmenkov
6f90fc449b
Merge pull request #23308 from ClickHouse/aku/fix-perf
...
fix broken perf test
2021-04-19 20:31:38 +03:00
Anton Popov
04c432f631
Merge pull request #23235 from sevirov/sevirov-DOCSUP-8222-forbid_to_drop_column
...
DOCSUP-8222: Forbid to drop a column if it's referenced by materialized view
2021-04-19 20:25:57 +03:00
Dmitriy
780d05a7e9
Translate to Russian
...
Выполнил перевод на русский язык.
2021-04-19 20:05:20 +03:00
olgarev
6abe37b13e
Apply suggestions from code review
...
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-04-19 20:04:51 +03:00
olgarev
6f5144a2e7
Update docs/ru/guides/apply-catboost-model.md
2021-04-19 20:01:58 +03:00
sevirov
7af6229418
Update docs/ru/sql-reference/functions/json-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-04-19 19:35:20 +03:00