Commit Graph

5012 Commits

Author SHA1 Message Date
alexey-milovidov
bf8d58d2e8
Merge pull request #18723 from ucasFL/select-all
add SELECT ALL syntax
2021-01-14 11:53:09 +03:00
alexey-milovidov
445283c726
Update index.md 2021-01-14 11:52:19 +03:00
RegulusZ
f04db6648d
Update float.md
Change the 32 line to correct meaning on Chinese
2021-01-14 15:52:18 +08:00
Denny Crane
86e9160930
Update external-dicts-dict-lifetime.md 2021-01-13 19:11:29 -04:00
Denny Crane
7bfacb79dd
Update external-dicts-dict-lifetime.md 2021-01-13 19:11:12 -04:00
Denny Crane
38ce7c0c9c
Update external-dicts-dict-lifetime.md 2021-01-13 19:08:51 -04:00
Denny Crane
a4e02065f3
Update external-dicts-dict-lifetime.md 2021-01-13 19:06:28 -04:00
Denny Crane
1244fed8bb
Update external-dicts-dict-lifetime.md 2021-01-13 19:01:17 -04:00
Denny Crane
2b40ac29e0
Update partition.md 2021-01-13 18:56:24 -04:00
Denny Crane
ae017c10d3
Update partition.md
tuple req. in part expressions
2021-01-13 18:55:24 -04:00
Denny Crane
fd67eb1251
Update partition.md
tuple req. in part expressions
2021-01-13 18:53:28 -04:00
George
e363a240ee Undo changes 2021-01-14 00:13:36 +03:00
gyuton
d8a38c7e57
Update docs/en/sql-reference/functions/string-search-functions.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-01-13 23:56:40 +03:00
gyuton
7df99ff4ff
Update docs/en/sql-reference/functions/string-search-functions.md
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-01-13 23:56:24 +03:00
Olga Revyakina
360721763c Docs in En 2021-01-13 02:25:21 +03:00
Olga Revyakina
d3b7fa1a77 Docs in En 2021-01-13 02:05:09 +03:00
alesapin
163be41718
Merge pull request #17059 from AnaUvarova/ana-uvarova-DOCSUP-3122-update-alter
DOCSUP-3122: Document two expressions ALTER
2021-01-12 14:04:46 +03:00
alesapin
fb966f3dbf
Update column.md 2021-01-12 12:20:57 +03:00
alesapin
cb2c4d3a8d
Update column.md 2021-01-12 12:20:00 +03:00
alesapin
a3b63b86fa
Update column.md 2021-01-12 12:18:00 +03:00
alesapin
cbad45bd4f
Update ttl.md 2021-01-12 12:06:39 +03:00
alesapin
089213634b
Update ttl.md 2021-01-12 12:00:31 +03:00
Denny Crane
2073831aa8
Update distinct.md
removed an outdated note
2021-01-11 19:55:58 -04:00
Denny Crane
7291fc030d
Update distinct.md
removed an outdated note
2021-01-11 19:55:10 -04:00
alexey-milovidov
67e7e6b235
Merge pull request #18914 from danlark1/master
Update libcxx and use unstable ABI to provide better performance
2021-01-12 01:21:32 +03:00
Olga Revyakina
2244bc8351 Links removed in Russian 2021-01-11 22:09:36 +03:00
Mariano Benítez Mulet
f62e73599a
Fixed error in DDL query doc for MongoDB dict
According to the documentation, DDL query for MongoDB dictionaries require

```sql
SOURCE(MONGO(
    host 'localhost'
    port 27017
    user ''
    password ''
    db 'test'
    collection 'dictionary_source'
))
```
However, the source type `MONGO` is not recognized.
It is, however, the source type `MONGODB`.

My change fixes this mistake in documentation.
2021-01-11 15:02:30 +01:00
tavplubix
213c653ef8
Merge pull request #17656 from bharatnc/ncb/ddl-worker-queue-table
add  system.distributed_ddl_queue table
2021-01-11 14:59:26 +03:00
Danila Kutenin
e5ec4e21b6 Fix Darwin build 2021-01-11 09:04:34 +00:00
Mark Frost
5538aaf374
Fixed type in metrics.md 2021-01-11 13:11:52 +05:00
Roman Bug
46b50d02dd
DOCSUP-4261: Document the aggregate_functions_null_for_empty setting (#18333)
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
Co-authored-by: Alexander Kazakov <Akazz@users.noreply.github.com>
2021-01-11 10:21:48 +03:00
sevirov
33cf7351b0
DOCSUP-5169: Document the min_compress_block_size and max_compress_block_size settings (#18248)
Co-authored-by: Alexander Kazakov <Akazz@users.noreply.github.com>
2021-01-10 23:21:32 +03:00
feng lv
94e1bc05d2 Merge branch 'master' of github.com:ClickHouse/ClickHouse into select-all 2021-01-09 16:07:52 +00:00
Azat Khuzhin
471deab63a Rename fsync_tmp_directory to fsync_directories for Distributed engine 2021-01-09 17:51:30 +03:00
feng lv
378b10863e fix conflict 2021-01-09 09:07:20 +00:00
Mikhail Filimonov
4cabfa356e Update documentation for Distributed fsync settings. 2021-01-09 11:31:32 +03:00
Azat Khuzhin
b5ace27014 Add fsync support for Distributed engine.
Two new settings (by analogy with MergeTree family) has been added:

- `fsync_after_insert` - Do fsync for every inserted. Will decreases
  performance of inserts.

- `fsync_tmp_directory` - Do fsync for temporary directory (that is used
  for async INSERT only) after all part operations (writes, renames,
  etc.).

Refs: #17380 (p1)
2021-01-09 11:31:32 +03:00
feng lv
8ab2832324 Merge branch 'master' of github.com:ClickHouse/ClickHouse into select-all 2021-01-09 02:36:25 +00:00
Azat Khuzhin
a8f13594ed Update documentation for system.table_engines 2021-01-08 14:57:24 +03:00
alexey-milovidov
6e34a0b71e
Merge pull request #17855 from spongedu/complete_sysemlog_table_doc
1. Refine documents for system log table; 2. fix a link error in config.xml
2021-01-08 09:49:01 +03:00
alexey-milovidov
4a2bf8b699
Update index.md 2021-01-08 09:06:35 +03:00
alexey-milovidov
d0352d1cd6
Update index.md 2021-01-08 08:17:02 +03:00
alexey-milovidov
b4c6052dd9
Update index.md 2021-01-08 08:16:06 +03:00
alexey-milovidov
6046be1912
Merge pull request #18816 from long2ice/master
Update client-libraries.md add asyncio client asynch
2021-01-08 07:56:10 +03:00
alexey-milovidov
07f3a783be
Merge pull request #18833 from ClickHouse/filimonov-patch-1
arrayMin/Max/Sum - fix bad description, add examples
2021-01-08 07:49:35 +03:00
alexey-milovidov
c9d37b194e
Update index.md 2021-01-08 07:33:01 +03:00
alexey-milovidov
723d52e08d
Update index.md 2021-01-08 07:32:19 +03:00
alexey-milovidov
9e6cb03015
Update index.md 2021-01-08 07:31:29 +03:00
Alexey Milovidov
6dcc779978 Merge branch 'master' into spongedu-complete_sysemlog_table_doc 2021-01-07 22:27:37 +03:00
bharatnc
1e579ac375 Fixes to code, build and style checks 2021-01-07 11:10:49 -08:00
bharatnc
8dacfde3d3 Docs - update to reflect code changes 2021-01-07 11:10:41 -08:00
bharatnc
5365d556e3 Docs - distributed_ddl_queue 2021-01-07 11:10:41 -08:00
alexey-milovidov
9b4160bbd0
Update tests.md 2021-01-07 16:31:50 +03:00
alexey-milovidov
c69931d352
Update tests.md 2021-01-07 16:22:28 +03:00
alexey-milovidov
263c0a9408
Update tests.md 2021-01-07 16:17:00 +03:00
alexey-milovidov
8d3e50ae1d
Update tests.md 2021-01-07 16:15:44 +03:00
alexey-milovidov
bb4adf0293
Update tests.md 2021-01-07 16:15:00 +03:00
alexey-milovidov
80bdc76a23
Update tests.md 2021-01-07 16:13:48 +03:00
alexey-milovidov
99fa3cbd34
Update tests.md 2021-01-07 16:06:03 +03:00
alexey-milovidov
d0c72f83cc
Update tests.md 2021-01-07 16:04:41 +03:00
alexey-milovidov
9de3a2f892
Update tests.md 2021-01-07 16:01:54 +03:00
alexey-milovidov
025ade6ef5
Update tests.md 2021-01-07 16:00:54 +03:00
alexey-milovidov
c4c10fddb2
Update tests.md 2021-01-07 15:59:59 +03:00
alexey-milovidov
10478811f9
Update tests.md 2021-01-07 15:59:05 +03:00
filimonov
fe96e81e7e
Fix errors add examples 2021-01-07 13:57:39 +01:00
alexey-milovidov
c6c2536a2a
Update tests.md 2021-01-07 15:37:18 +03:00
alexey-milovidov
c920a57097
Update tests.md 2021-01-07 15:35:20 +03:00
feng lv
1a47cf8611 Merge branch 'master' of github.com:ClickHouse/ClickHouse into select-all 2021-01-07 10:26:28 +00:00
long2ice
f4a6765765
Merge pull request #1 from long2ice/patch-4
Update client-libraries.md
2021-01-07 14:39:10 +08:00
long2ice
29e561977b
Merge pull request #2 from long2ice/patch-3
Update client-libraries.md
2021-01-07 14:38:56 +08:00
long2ice
b361805182
Merge pull request #3 from long2ice/patch-2
Update client-libraries.md
2021-01-07 14:38:44 +08:00
long2ice
59ec7d6338
Merge pull request #4 from long2ice/patch-1
Update client-libraries.md
2021-01-07 14:38:33 +08:00
long2ice
6e3145f555
Merge pull request #5 from long2ice/patch-5
Update client-libraries.md
2021-01-07 14:38:22 +08:00
long2ice
2de812af0f
Update client-libraries.md 2021-01-07 14:32:59 +08:00
long2ice
a347bb0600
Update client-libraries.md 2021-01-07 14:32:42 +08:00
long2ice
b5bc5d6798
Update client-libraries.md 2021-01-07 14:32:24 +08:00
long2ice
c82602abff
Update client-libraries.md 2021-01-07 14:31:56 +08:00
long2ice
f96208ac7c
Update client-libraries.md 2021-01-07 14:31:35 +08:00
long2ice
fe36a5582d
Update client-libraries.md 2021-01-07 14:30:59 +08:00
alexey-milovidov
68ccdc8ca2
Merge pull request #18809 from booknouse/master
Update style.md
2021-01-07 06:13:52 +03:00
alexey-milovidov
f35edecebb
Update ontime.md 2021-01-06 23:27:00 +03:00
alexey-milovidov
af0a359cea
Update metrica.md 2021-01-06 22:53:23 +03:00
alexey-milovidov
058cdcc62c
Update brown-benchmark.md 2021-01-06 22:50:08 +03:00
alexey-milovidov
8e0cbea738
Update brown-benchmark.md 2021-01-06 22:49:48 +03:00
Bertrand Junqua
85003c8b5c
Fix typo in array functions' documentation 2021-01-06 16:36:51 +01:00
booknouse
3f5b94fe3b
Update style.md
Update translation by machine, and improve document more human-readable.
2021-01-06 15:12:28 +08:00
feng lv
421feb8cf9 Merge branch 'master' of github.com:ClickHouse/ClickHouse into select-all 2021-01-05 07:47:11 +00:00
alexey-milovidov
683b16a525
Merge pull request #18739 from ClickHouse/brown-benchmark
Add description for Brown Benchmark
2021-01-04 21:08:14 +03:00
alexey-milovidov
e476dcdba7
Update replication.md 2021-01-04 20:58:26 +03:00
Alexey Milovidov
04d8544151 Add description for Brown Benchmark 2021-01-04 20:30:58 +03:00
feng lv
dd884349ac update document 2021-01-04 14:34:22 +00:00
feng lv
459abca5b5 Merge branch 'master' of github.com:ClickHouse/ClickHouse into insert-cluster 2021-01-03 08:47:14 +00:00
Alexey Milovidov
25b100761f Merge branch 'master' into function_byte_size 2021-01-03 04:36:48 +03:00
Alexey Milovidov
56bbdccccc More robust docs release 2021-01-01 18:49:09 +03:00
Alexey Milovidov
3566d00c02 Merge branch 'master' into ucasFL-insert-cluster 2020-12-31 17:35:34 +03:00
alexey-milovidov
60a902b072
Merge pull request #18642 from ClickHouse/filimonov-build-instuctions-clang-11
Update build instructions for clang-11
2020-12-31 15:17:52 +03:00
alexey-milovidov
970356f13c
Update build.md 2020-12-31 15:17:27 +03:00
AnaUvarova
6b5a313dd7
Delete columnar-database.md 2020-12-31 13:55:35 +03:00
tavplubix
e525da87ce
Merge pull request #18584 from olgarev/revolg-DOCSUP-4434-MySQL_table_function_supports_INSERTS
DOCSUP-4434: Docs for the INSERT support in mysql function
2020-12-31 12:42:58 +03:00
tavplubix
17bfaa3e6c
Update mysql.md 2020-12-31 12:06:55 +03:00