Alexander Kuzmenkov
b62c9e729d
Merge pull request #7215 from ClickHouse/formats_improvements
...
Miscellaneous formats improvements
2019-10-17 17:37:38 +03:00
BayoNet
7601fafe63
DOCS-413: Links fixes. ( #7362 )
...
* Typo fix.
* Links fix.
* Fixed links in docs.
* More fixes.
* Link fixes.
* CLICKHOUSEDOCS-413: Links fixes.
2019-10-17 13:38:32 +03:00
tavplubix
c4b46e113e
Merge branch 'master' into formats_improvements
2019-10-16 23:00:17 +03:00
Alexander Tokmakov
5f6703130e
fixes
2019-10-16 18:28:48 +03:00
Nikolai Kochetov
dfe297b93f
Merge pull request #6570 from godfreyd/godfreyd-clickhouse-catboost
...
Docs(solutions): applying a CatBoost model in ClickHouse
2019-10-16 17:24:11 +03:00
Alexander Tokmakov
aa9d29d6ae
Merge branch 'master' into formats_improvements
2019-10-16 17:15:13 +03:00
alexey-milovidov
1b8cb59e4b
Merge pull request #7286 from azat/docs-agg_functions-notes-fixes
...
Fix notes syntax in documentation
2019-10-14 20:12:53 +03:00
Sergei Bocharov
8b27fa975e
Fixes
2019-10-14 16:13:26 +03:00
Sergei Bocharov
6920592143
Fix .data to data
2019-10-14 16:08:46 +03:00
Sergei Bocharov
bf90e0eef9
Fixes
2019-10-14 15:39:42 +03:00
Sergei Bocharov
fe63646cb4
Fixes Integrate CatBoost Topic
2019-10-14 13:34:27 +03:00
Sergei Bocharov
443299fdf5
Fixed step 3 — added info about libcatboostmodel
2019-10-14 13:34:27 +03:00
Sergei Bocharov
1838ddde0b
Fix links
2019-10-14 13:34:27 +03:00
Sergei Bocharov
058217386a
Fixes after review
2019-10-14 13:34:27 +03:00
Sergei Bocharov
d52edf15c9
Fixes
2019-10-14 13:34:27 +03:00
Sergei Bocharov
cdc2d1b364
Fix RegExp
2019-10-14 13:34:27 +03:00
Sergei Bocharov
4b11a2e30b
Added .yaspellerrc
2019-10-14 13:34:27 +03:00
Sergei Bocharov
1f394202e6
Fix typos
2019-10-14 13:34:27 +03:00
Sergei Bocharov
f0c38c82ca
Fix typos
2019-10-14 13:34:27 +03:00
Sergei Bocharov
f5ebf2ccb7
Added Quick Start info
2019-10-14 13:34:27 +03:00
Sergei Bocharov
e2c3db4772
Fixes after review2
2019-10-14 13:34:27 +03:00
Sergei Bocharov
4331a1614f
Fixes after review
2019-10-14 13:34:27 +03:00
Sergei Bocharov
61709ccb14
Fix typo
2019-10-14 13:34:27 +03:00
Sergei Bocharov
efccf28cfb
docs(solutions): applying a CatBoost model in ClickHouse
2019-10-14 13:34:27 +03:00
Danila Kutenin
61a97add8d
Some docs
2019-10-13 15:35:43 +02:00
Danila Kutenin
57f20ba17e
All multi{Fuzzy}MatchAllIndices functions
2019-10-13 15:22:09 +02:00
alexey-milovidov
4dffc67434
Merge pull request #7291 from sundy-li/FQDN
...
Function FQDN, fullHostName
2019-10-12 20:02:22 +03:00
sundy-li
4e48992397
fullHostName by function getFQDNOrHostName
2019-10-12 17:21:30 +08:00
sundy-li
59d2989826
Function FQDN,fullHostName
2019-10-12 15:17:30 +08:00
Zhichang Yu
679db35ed3
Fixed #7109 groupBitmapOr(31) segfault
2019-10-12 10:36:52 +08:00
Azat Khuzhin
b0e131a46f
docs: fix notes syntax (triple !)
2019-10-11 23:21:59 +03:00
Nikita Vasilev
05147f2a85
fix
2019-10-09 23:26:36 +03:00
Nikita Vasilev
82616b954b
fix
2019-10-09 22:19:50 +03:00
alexey-milovidov
2a94198445
Update mysql.md
2019-10-09 21:28:22 +03:00
alexey-milovidov
94f093829d
Update mysql.md
2019-10-09 21:28:01 +03:00
alexey-milovidov
689411abe0
Merge pull request #7222 from azat/uniqCombined64
...
[RFC] Introduce uniqCombined64() to get sane results for cardinality > UINT_MAX
2019-10-09 20:29:56 +03:00
alexey-milovidov
0555749096
Update reference.md
2019-10-09 20:29:12 +03:00
alexey-milovidov
6d31c3e730
Update reference.md
2019-10-09 20:28:15 +03:00
alexey-milovidov
4c1f0177b6
Merge pull request #7109 from infinivision/aggBitmapAnd
...
added groupBitmapAnd, groupBitmapOr, groupBitmapXor
2019-10-08 22:51:46 +03:00
alexey-milovidov
b9aa5d812d
Merge pull request #7171 from nikvas0/nikvas0/lazy_db
...
Lazy Database
2019-10-08 22:15:55 +03:00
alexey-milovidov
e846aea5c8
Update lazy.md
2019-10-08 22:15:30 +03:00
Azat Khuzhin
f46c5a47c0
Introduce uniqCombined64() to get sane results for cardinality > UINT_MAX
...
By default uniqCombined() uses 32-bit hash for all types except String,
so this means that you cannot use uniqCombined() with i.e UInt64 and
cardinality > UINT_MAX, although you can use uniqCombined(toString())
and this will lead to 64-bit hash, but will not have good performance.
So uniqCombined64() had been introduced to fix this.
Requires: #7213
2019-10-08 21:59:35 +03:00
Denis Zhuravlev
6f51d92031
Doc change. Added links to other doc articles (distributed.md) ( #7144 )
2019-10-08 16:56:48 +03:00
Vasilyev Nikita
94fd716e32
fix
2019-10-08 11:33:21 +03:00
Vasilyev Nikita
a8b1ba93ff
docs
2019-10-08 11:31:12 +03:00
Winter Zhang
084ef9c47b
Continue to complete pr of document from lvxin1986 ( #7220 )
...
* Update index.md
translate the index.md
* Update distinctive_features.md
modify the data compression description
* Update distinctive_features.md
修改 多核心并行处理 章节
* Update distinctive_features.md
* continue to complete pr from lvxin1986
* continue to complete pr from lvxin1986
2019-10-08 10:58:33 +03:00
Alexander Tokmakov
1c5ee018df
update docs
2019-10-07 21:55:12 +03:00
Ivan Blinkov
15deedb420
[docs] fix some title case
2019-10-07 20:00:21 +03:00
alexey-milovidov
aa15bfbd33
Update client_libraries.md
2019-10-07 17:08:34 +03:00
alexey-milovidov
c743a9f9ff
Merge pull request #7190 from godfreyd/godfreyd-currentUser
...
docs(currentUser): fix description
2019-10-05 21:55:10 +03:00