木木夕120
4da75a83fc
Delete quota_usage.md
2021-10-27 13:41:11 +08:00
木木夕120
3770db6c35
Create quota_limits.md
2021-10-27 13:40:35 +08:00
木木夕120
fb6aaae7f0
Delete quota_limits.md
2021-10-27 13:29:55 +08:00
木木夕120
35672e7f6c
Create query_views_log.md
2021-10-27 13:28:24 +08:00
木木夕120
4da05888d5
Delete query_views_log.md
2021-10-27 13:07:07 +08:00
feng lv
4ac120b883
remove some unneeded header files
2021-10-27 04:13:12 +00:00
凌涛
fb6716f4ac
add doc
2021-10-27 11:56:55 +08:00
木木夕120
69459549c4
Create parts_columns.md
2021-10-27 11:01:38 +08:00
木木夕120
9031e42d5c
Delete parts_columns.md
2021-10-27 10:40:15 +08:00
木木夕120
4d2dcb6d78
Create opentelemetry_span_log.md
2021-10-27 10:28:46 +08:00
木木夕120
8c7528b0d4
Delete opentelemetry_span_log.md
2021-10-27 10:11:19 +08:00
木木夕120
6a6f7ca622
Create licenses.md
2021-10-27 10:10:33 +08:00
木木夕120
18b843be77
Delete licenses.md
2021-10-27 10:07:55 +08:00
木木夕120
96e560bcfb
Create grants.md
2021-10-27 10:06:30 +08:00
木木夕120
289dcb60c6
Delete grants.md
2021-10-27 10:01:32 +08:00
木木夕120
6f4bc11a04
Create errors.md
2021-10-27 10:00:59 +08:00
木木夕120
4b56e76c0b
Delete errors.md
2021-10-27 09:58:08 +08:00
木木夕120
1d4227aab6
Create enabled-roles.md
2021-10-27 09:57:37 +08:00
木木夕120
b7f6333219
Delete enabled-roles.md
2021-10-27 09:55:32 +08:00
木木夕120
7ca924b2f6
Create distribution_queue.md
2021-10-27 09:54:20 +08:00
木木夕120
64434fb10b
Delete distribution_queue.md
2021-10-27 09:49:18 +08:00
木木夕120
76ad1e777b
Create distributed_ddl_queue.md
2021-10-27 09:48:35 +08:00
木木夕120
ba86f0e3f4
Delete distributed_ddl_queue.md
2021-10-27 09:40:34 +08:00
木木夕120
c9e5bdf436
Create data_skipping_indices.md
2021-10-27 09:38:59 +08:00
木木夕120
386b097009
Delete data_skipping_indices.md
2021-10-27 09:33:53 +08:00
木木夕120
492ba037ec
Update crash-log.md
2021-10-27 09:33:01 +08:00
木木夕120
23640513d7
Create current-roles.md
2021-10-27 09:32:25 +08:00
木木夕120
6a633d86cc
Delete current-roles.md
2021-10-27 09:24:52 +08:00
木木夕120
2d0ccc4848
Merge branch 'ClickHouse:master' into master
2021-10-27 09:24:22 +08:00
木木夕120
cebdee8905
Modify the content
2021-10-27 09:14:10 +08:00
jasperzhu
49dd69c6c9
adjust header files
2021-10-27 05:22:05 +05:30
jasperzhu
0217ed09ac
revise compile flag
2021-10-27 05:19:15 +05:30
jasperzhu
5ab55f7eaa
fixed function defect
2021-10-27 04:21:46 +05:30
jasperzhu
27f30dab89
remove function due to extra latency
2021-10-27 03:44:28 +05:30
Cody Baker
b764b6ce21
Update hardware page colors ( #30719 )
...
Replaces yellow with a light gray
2021-10-27 00:08:05 +03:00
Vitaly Baranov
bc9ee5e33f
Add tests for compatibility of LogFamily.
2021-10-26 23:09:40 +03:00
alesapin
44684a8dff
Merge pull request #30678 from ClickHouse/fix_keeper_test
...
Fix keeper zookeeper converter test
2021-10-26 23:03:30 +03:00
Azat Khuzhin
fbf98bea0b
Fix "Column is not under aggregate function and not in GROUP BY" with PREWHERE
...
In 21.7 the function column type is unknown:
(lldb) p tmp_actions_dag->dumpDAG()
(std::string) $14 = "0 : INPUT () (no column) Int32 key\n1 : COLUMN () Const(UInt8) UInt8 1\n2 : FUNCTION (0) (no column) UInt8 ignore(key) [ignore]\n3 : FUNCTION (1, 2) (no column) UInt8 or(1, ignore(key)) [or]\nIndex: 0 1 2 3\n"
^^^^^^^^^^^
While in 21.8+ it is const:
(lldb) p tmp_actions_dag->dumpDAG()
(std::string) $22 = "0 : INPUT () (no column) Int32 key\n1 : COLUMN () Const(UInt8) UInt8 1\n2 : FUNCTION (0) (no column) UInt8 ignore(key) [ignore]\n3 : FUNCTION (1, 2) Const(UInt8) UInt8 or(1, ignore(key)) [or]\nIndex: 0 1 2 3\n"
^^^^^
This is after getRootActions() in SelectQueryExpressionAnalyzer::appendPrewhere()
v1: fix for SELECT only, but breaks virtual columns
v2: hacky fix, that also touches MergeTree code
v3: allow_remove_inputs=false
v4: allow_constant_folding=false instead
2021-10-26 22:57:48 +03:00
Azat Khuzhin
dd7bffcaf9
ActionsDAG: add allow_constant_folding flag for removeUnusedActions()
2021-10-26 22:56:44 +03:00
Azat Khuzhin
248b689067
ActionsDag: add allow_remove_inputs for other variants of removeUnusedActions()
2021-10-26 22:56:44 +03:00
Azat Khuzhin
874f7a5052
Add a test with optimized columns from PREWHERE
2021-10-26 22:56:44 +03:00
Dmitriy
46e41a10e8
Fix typo
...
Поправил опечатку.
2021-10-26 22:16:24 +03:00
jasperzhu
fb31410926
change to inline for bitmask generator
2021-10-27 00:05:47 +05:30
Dmitriy
8d0f4e0d70
Translate to Russian
...
Выполнил перевод на русский язык.
2021-10-26 21:20:24 +03:00
andrc1901
a4d0bbe399
Update docs/ru/sql-reference/functions/splitting-merging-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-10-26 20:47:32 +03:00
andrc1901
c569a1b37e
Update docs/ru/sql-reference/functions/splitting-merging-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-10-26 20:47:22 +03:00
andrc1901
e45c2241a9
Update docs/en/sql-reference/functions/splitting-merging-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-10-26 20:47:10 +03:00
andrc1901
9138d8965d
Update docs/en/sql-reference/functions/splitting-merging-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-10-26 20:46:44 +03:00
Nikita Mikhaylov
aae30a9e37
Fix fuzzer build ( #30344 )
2021-10-26 20:30:34 +03:00
Nikolai Kochetov
0f30513652
Revert "Revert "Improve usability of remote_url_allow_hosts
""
2021-10-26 20:17:02 +03:00