Roman Vasin
a4e982442f
Update documentation
2023-06-14 11:13:59 +00:00
Robert Schulze
59bc3e25be
Merge pull request #49824 from AVMusorin/allow-alias-column-kafka
...
KafkaEngine: Allow usage of Alias column type
2023-05-15 23:40:03 +02:00
robot-ch-test-poll4
e58d1821eb
Merge pull request #49788 from lesandie/master
...
Reworked Local File Cache documentation
2023-05-15 21:38:43 +02:00
Vitaly Baranov
bf3336a84e
Merge pull request #47640 from ilejn/row_policy_template
...
Row policy for database
2023-05-15 20:05:15 +02:00
Diego Nieto
bf201a09b7
Update docs/en/operations/storing-data.md
...
@kssenii comments
Co-authored-by: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com>
2023-05-15 15:43:39 +02:00
AVMusorin
418a61a68c
Allow using Alias column type for KafkaEngine
...
```
create table kafka
(
a UInt32,
a_str String Alias toString(a)
) engine = Kafka;
create table data
(
a UInt32;
a_str String
) engine = MergeTree
order by tuple();
create materialized view data_mv to data
(
a UInt32,
a_str String
) as
select a, a_str from kafka;
```
Alias type works as expected in comparison with MATERIALIZED/EPHEMERAL
or column with default expression.
Ref: https://github.com/ClickHouse/ClickHouse/pull/47138
Co-authored-by: Azat Khuzhin <a3at.mail@gmail.com>
2023-05-15 15:39:58 +02:00
Diego Nieto
52fdc49ef3
Merge branch 'master' into master
2023-05-15 10:28:31 +02:00
robot-clickhouse
bec4edad65
Merge pull request #49856 from darkkeks/fix-date-time-functions-toc
...
[docs] Remove "example" section from date-time-functions page toc
2023-05-14 23:43:00 +02:00
Ilya Golshtein
9ef610040f
row_policy_template - table *
is respected
2023-05-13 22:30:02 +00:00
Ilya Golshtein
7fa6ea4ccc
row policy template: tests and code cleanup, code review changes
2023-05-13 22:30:02 +00:00
Nikolay Degterinsky
a2e7c77fe2
Merge pull request #49860 from ucasfl/doc
...
update doc
2023-05-13 23:26:40 +02:00
flynn
f775a466f7
update doc
2023-05-13 16:12:51 +00:00
Robert Schulze
0d9a6b5545
Update QPL docs
2023-05-13 13:26:47 +00:00
darkkeks
2b793e3a14
[docs] Remove "example" section from date-time-functions page toc
2023-05-13 16:22:17 +03:00
Alexey Milovidov
6df457dcaf
Merge pull request #49811 from jinjunzh/iaadeflate_swpath_compat
...
qpl_deflate codec lower the minimum SIMD version to SSE 4.2
2023-05-13 04:21:54 +03:00
Rich Raposa
944100c4b1
Merge pull request #49841 from nellicus/dedicate_keepers_prod
...
[docs] strongly recommend dedicated keeper in prod
2023-05-12 14:08:47 -06:00
Robert Schulze
f011421f32
Merge pull request #49825 from den-crane/patch-66
...
Doc. Note about why Google CityHash <> cityHash64
2023-05-12 20:01:58 +02:00
nellicus
5366da8bcf
fix links
2023-05-12 18:07:38 +02:00
nellicus
2960a0420b
strongly recommend ded keeper in prod
2023-05-12 17:58:41 +02:00
robot-ch-test-poll1
6314813e7b
Merge pull request #49840 from yakkomajuri/patch-3
...
Minor correction to example in COMMENT COLUMN docs
2023-05-12 17:31:58 +02:00
Yakko Majuri
eb6cbe63ee
Minor correction to example in COMMENT COLUMN
2023-05-12 11:54:53 -03:00
Robert Schulze
5133597661
+m
2023-05-12 16:51:47 +02:00
Robert Schulze
9d34233e65
Merge branch 'master' into iaadeflate_swpath_compat
2023-05-12 16:39:17 +02:00
Robert Schulze
5235f52de3
Small rewrite, removed note about farm hash (it seemed fragile: https://github.com/ClickHouse/ClickHouse/issues/8354#issuecomment-974808920 )
2023-05-12 16:38:32 +02:00
DanRoscigno
b8b4723aa6
add max_rows_in_set_to_optimize_join docs
2023-05-12 10:19:30 -04:00
Diego Nieto
78127d8a2c
Merge branch 'ClickHouse:master' into master
2023-05-12 16:08:48 +02:00
jinjunzh
e72a6fe973
qpl-deflate codec lower the minimum SIMD version to SSE 4.2
2023-05-12 09:56:01 -04:00
Dan Roscigno
596e50ebc0
Merge pull request #49830 from DanRoscigno/docs-udfs
...
uplevel UDFs and link
2023-05-12 09:05:39 -04:00
DanRoscigno
0b9e575588
uplevel UDFs and link
2023-05-12 08:05:38 -04:00
Robert Schulze
b9c185af44
Merge pull request #49678 from azat/build/llvm-16
...
Switch to LLVM/clang 16 (16.0.3)
2023-05-12 13:47:36 +02:00
Denny Crane
051456ba92
Update hash-functions.md
2023-05-12 08:33:27 -03:00
Diego Nieto
ba44b23889
Merge branch 'ClickHouse:master' into master
2023-05-12 13:31:12 +02:00
Denny Crane
47b27ca5fb
Update hash-functions.md
2023-05-12 08:23:02 -03:00
Dan Roscigno
56a563f2bd
Merge pull request #49810 from DanRoscigno/doc-greatest-least
...
add greatest() and least() docs
2023-05-12 05:52:01 -04:00
Diego Nieto
7dcaa0a25c
Merge branch 'master' into master
2023-05-12 11:46:37 +02:00
Diego Nieto (lesandie)
8fc0083a26
Rewrite following conversation/comments
2023-05-12 11:45:38 +02:00
Han Fei
07341a04fd
Merge pull request #49666 from hanfei1991/hanfei/regexp-dict-read
...
Support `dictionary` table function for `RegExpTreeDictionary`
2023-05-12 11:40:46 +02:00
Diego Nieto
4b69a203ea
Merge branch 'ClickHouse:master' into master
2023-05-12 10:07:18 +02:00
DanRoscigno
11f78fed2b
fix markdown spaces
2023-05-11 21:40:47 -04:00
DanRoscigno
a14ad025ee
add greatest and least docs
2023-05-11 21:33:36 -04:00
Alexey Milovidov
cf2b158072
Update build-cross-riscv.md
2023-05-12 03:18:43 +03:00
robot-clickhouse
6f19a374f2
Merge pull request #49791 from den-crane/patch-65
...
Update settings.md
2023-05-12 01:02:58 +02:00
robot-ch-test-poll2
91fd3a3d16
Merge pull request #49745 from jrdi/improve-local-cache-documentation
...
Improve local cache documentation
2023-05-12 00:30:19 +02:00
Han Fei
ef74e64336
address comments
2023-05-11 22:18:08 +02:00
Denny Crane
fcf1dd52bc
Update settings.md
2023-05-11 14:05:30 -03:00
Vitaly Baranov
ec011b9113
Merge branch 'master' into user-grants-from-config
2023-05-11 17:08:06 +02:00
Rich Raposa
2f8a530bf3
Merge pull request #49741 from ClickHouse/rfraposa-patch-2
...
Update async_insert explanation in docs
2023-05-11 08:36:53 -06:00
Diego Nieto (lesandie)
10e0c1d832
Reworked documentation using local cache section
2023-05-11 16:06:14 +02:00
Diego Nieto (lesandie)
26743b5439
Fix Local Cache documentation explanations
2023-05-11 15:36:47 +02:00
Jordi Villar
3780a07e46
Improve local cache documentation
2023-05-11 12:40:48 +02:00