Kruglov Pavel
582216a3ca
Merge pull request #39919 from pzhdfy/UniqSketch
...
UniqThetaSketch support set operation such as union/intersect/not
2022-09-05 13:42:14 +02:00
Alexey Milovidov
1963baa11e
Merge pull request #40964 from ClickHouse/fix-docs-formatting
...
Fix formatting of notes box in documentation
2022-09-04 03:39:39 +03:00
Denny Crane
dd19b0856e
Doc. mapApply, mapFilter, mapUpdate ( #40961 )
...
* Update tuple-map-functions.md
* Update tuple-map-functions.md
2022-09-04 00:43:39 +02:00
Robert Schulze
385427ade8
Fix formatting of notes box in documentation
...
Follow-up to PR #38435
2022-09-03 17:25:14 +00:00
Fangyuan Deng
bc7d661668
Merge branch 'master' into UniqSketch
2022-09-01 19:31:53 +08:00
pzhdfy
acec516271
add docs
2022-09-01 19:31:01 +08:00
Robert Schulze
56eece40ec
Merge pull request #40736 from LevyCory/add-offset-to-formatDateTime
...
Add timezone offset support to `formatDateTime`
2022-09-01 09:50:17 +02:00
Robert Schulze
912663b719
Revert "Move CatBoost evaluation into clickhouse-library-bridge"
2022-08-31 20:54:43 +02:00
Robert Schulze
ca01286028
Merge pull request #39629 from ClickHouse/catboost-bridge
...
Move CatBoost evaluation into clickhouse-library-bridge
2022-08-31 16:16:11 +02:00
Denny Crane
0d7cc82267
Update string-functions.md
2022-08-30 11:08:23 -03:00
Andrey Zvonov
93f9abf130
upd2
2022-08-30 14:41:40 +03:00
Andrey Zvonov
14adea8792
fix error in docs
2022-08-30 14:40:26 +03:00
Cory Levy
1e2eee7146
Remove unnecessary backslashes in markdown sql blocks
2022-08-29 16:31:31 -04:00
Robert Schulze
6b2b3c1eb3
feat: implement catboost in library-bridge
...
This commit moves the catboost model evaluation out of the server
process into the library-bridge binary. This serves two goals: On the
one hand, crashes / memory corruptions of the catboost library no longer
affect the server. On the other hand, we can forbid loading dynamic
libraries in the server (catboost was the last consumer of this
functionality), thus improving security.
SQL syntax:
SELECT
catboostEvaluate('/path/to/model.bin', FEAT_1, ..., FEAT_N) > 0 AS prediction,
ACTION AS target
FROM amazon_train
LIMIT 10
Required configuration:
<catboost_lib_path>/path/to/libcatboostmodel.so</catboost_lib_path>
*** Implementation Details ***
The internal protocol between the server and the library-bridge is
simple:
- HTTP GET on path "/extdict_ping":
A ping, used during the handshake to check if the library-bridge runs.
- HTTP POST on path "extdict_request"
(1) Send a "catboost_GetTreeCount" request from the server to the
bridge, containing a library path (e.g /home/user/libcatboost.so) and
a model path (e.g. /home/user/model.bin). Rirst, this unloads the
catboost library handler associated to the model path (if it was
loaded), then loads the catboost library handler associated to the
model path, then executes GetTreeCount() on the library handler and
finally sends the result back to the server. Step (1) is called once
by the server from FunctionCatBoostEvaluate::getReturnTypeImpl(). The
library path handler is unloaded in the beginning because it contains
state which may no longer be valid if the user runs
catboost("/path/to/model.bin", ...) more than once and if "model.bin"
was updated in between.
(2) Send "catboost_Evaluate" from the server to the bridge, containing
the model path and the features to run the interference on. Step (2)
is called multiple times (once per chunk) by the server from function
FunctionCatBoostEvaluate::executeImpl(). The library handler for the
given model path is expected to be already loaded by Step (1).
Fixes #27870
2022-08-29 20:26:45 +00:00
DanRoscigno
c4b8137d31
replace symlinks
2022-08-29 12:19:50 -04:00
Cory Levy
deb2a97020
Add docs
2022-08-28 22:28:34 -04:00
DanRoscigno
5b5fcc56aa
add slugs
2022-08-28 10:53:34 -04:00
DanRoscigno
db1a3b717c
add slugs
2022-08-28 09:58:27 -04:00
DanRoscigno
c4caa35cfd
add frontmatter dashes
2022-08-28 09:53:52 -04:00
zvonand
e257f9d0cd
update docs, tests + small fixes
2022-08-24 01:09:14 +03:00
zvonand
a9fd733871
updated docs
2022-08-24 01:09:14 +03:00
Andrey Zvonov
f40bd2194f
Update docs/en/sql-reference/functions/date-time-functions.md
...
Co-authored-by: Robert Schulze <robert@clickhouse.com>
2022-08-23 23:42:19 +03:00
Andrey Zvonov
b54a04d48f
Update docs/en/sql-reference/functions/date-time-functions.md
...
Co-authored-by: Robert Schulze <robert@clickhouse.com>
2022-08-23 23:42:01 +03:00
Andrey Zvonov
6c1fa6844f
Update docs/en/sql-reference/functions/date-time-functions.md
...
Co-authored-by: Robert Schulze <robert@clickhouse.com>
2022-08-23 23:41:19 +03:00
Andrey Zvonov
946223df20
Update docs/en/sql-reference/functions/date-time-functions.md
...
Co-authored-by: Robert Schulze <robert@clickhouse.com>
2022-08-23 23:41:01 +03:00
Andrey Zvonov
e4f00e2f15
Update docs 1
...
Co-authored-by: Robert Schulze <robert@clickhouse.com>
2022-08-23 23:40:34 +03:00
zvonand
d789dabc9d
Fixed , updated docs
2022-08-22 17:36:56 +03:00
zvonand
963d838647
updated docs
2022-08-22 17:36:56 +03:00
Denny Crane
b6329293a9
Update date-time-functions.md
2022-08-21 16:45:13 -03:00
Denny Crane
c926d04c21
Update date-time-functions.md
2022-08-21 16:42:40 -03:00
Denny Crane
54374e22e6
Update date-time-functions.md
2022-08-19 15:09:40 -03:00
Robert Schulze
24615059fb
Merge pull request #40319 from ClickHouse/custom-error-code-in-throwif
...
Allow custom error code in throwIf
2022-08-19 09:49:35 +02:00
Robert Schulze
f121941916
feat: allow custom error code for SQL function throwIf()
2022-08-17 21:14:40 +00:00
Stephan
5252d41fdb
Provide missing documentation for arrayWithConstant
...
Documentation of `arrayWithConstant(l, const)`-function, as this was not part of the documentation so far.
2022-08-17 13:21:03 +02:00
Denny Crane
f574b49825
Update array-join.md
2022-08-15 16:45:07 -03:00
Denny Crane
f3b349fd18
Update array-join.md
2022-08-15 16:42:55 -03:00
Denny Crane
73f51a0f19
doc array-join
2022-08-15 16:40:48 -03:00
Robert Schulze
55ff546322
Fix typo
2022-08-11 20:42:59 +00:00
Dan Roscigno
35ee71a908
Merge pull request #40110 from ClickHouse/fix-docs-for-39287
...
Fix documentation of "modulo(a, b)"
2022-08-11 16:14:28 -04:00
Robert Schulze
aa42a42e0f
Fix documentation of "modulo(a, b)"
...
Fixes #39287
ClickHouse uses the same semantics for modulo on floats as Python, i.e.
4.2 % 2.0 = 0.2
and not as previously documented:
4.2 % 2.0 --> (drop decimal places) --> 4 % 2 = 0.
Fixed the documentation.
2022-08-11 08:23:43 +00:00
Alexey Milovidov
8374f31306
Merge pull request #39425 from arenadata/ADQM-485
...
Add support of dates from year 1900 to 2299 for Date32 and DateTime64
2022-08-11 05:01:53 +03:00
Alexey Milovidov
53097b3d65
Merge pull request #40015 from tbragin/master
...
Add parseDateTime64BestEffortUS* functions
2022-08-10 20:00:50 +03:00
Tanya Bragin
be51187f85
Update tests to use UTC, and docs to consistent order
2022-08-09 17:27:06 -07:00
Robert Schulze
76cc0cdc27
Remove redundancy in documentation of parseDateTimeBestEffortUS[OrNull|OrZero]()
...
The documentation of functions
- parseDateTimeBestEffortUS(),
- parseDateTimeBestEffortUSOrNull() and
- parseDateTimeBestEffortUSOrZero()
previously repeated the text of functions
- parseDateTimeBestEffort(),
- parseDateTimeBestEffortOrNull() and
- parseDateTimeBestEffortOrZero().
In the docs of the first function, the duplication was removed and we
now emphasize the difference to the non-US version more clearly.
The docs of the second and third functions were just stripped of the
duplication. Chinese docs did not mention the US-date variants, hence
nothing was changed in them.
2022-08-09 16:54:06 +00:00
Robert Schulze
7c59331e0e
Make examples for function 'parseDateTimeBestEffort()' less ambiguous
...
"12/12" and "12-12" could be interpreted as MM/DD or DD/MM and therefore
were not great examples.
2022-08-09 08:56:05 +00:00
Tanya Bragin
eb61db3b67
initial changes to close #37492
2022-08-08 19:45:00 -07:00
Anton Popov
f94d4d4877
Merge branch 'master' into hash-functions-map
2022-08-02 13:26:54 +02:00
Anton Popov
2a841d0860
update docs for hash functions
2022-08-01 14:22:40 +00:00
Kruglov Pavel
dfdfabec94
Merge pull request #39218 from evillique/file_default_value
...
Add default argument to the function `file`
2022-08-01 13:04:19 +02:00
Robert Schulze
b52843d5fd
Merge pull request #37951 from zvonand/dt64_timeslots
...
Fix timeSlots for DateTime64
2022-07-30 20:49:05 +02:00
Roman Vasin
b462366415
Merge branch 'master' of github.com:ClickHouse/ClickHouse into ADQM-485
2022-07-25 17:55:47 +00:00
Alexey Milovidov
6fdcb009ff
Merge pull request #39533 from ClickHouse/now-in-block
...
Add function `nowInBlock`
2022-07-25 04:22:11 +03:00
Denny Crane
a1a1d357b4
Update string-replace-functions.md
2022-07-24 20:15:48 -03:00
Alexey Milovidov
0492f23d07
Add the docs
2022-07-24 23:11:54 +02:00
Andrey Zvonov
e473606cd1
Merge branch 'master' into zvonand-b58-datatype
2022-07-21 15:55:05 +02:00
Roman Vasin
e3192cf753
Correct docs to reflect new range 1900..2299 for Date32 and DateTime64; Cleanup code
2022-07-20 15:19:02 +00:00
Nikolay Degterinsky
c9ae525da7
Merge branch 'master' into file_default_value
2022-07-20 14:22:58 +02:00
Kruglov Pavel
12221cffc9
Merge pull request #39071 from jiahui-97/parse_timedelta
...
implementation of parseTimeDelta function
2022-07-19 12:39:56 +02:00
jiahui-97
e7af88b688
implementation of parseTimeDelta function
...
Co-authored-by: Kruglov Pavel <48961922+Avogar@users.noreply.github.com>
2022-07-19 09:33:02 +08:00
Andrey Zvonov
e0d1954fac
Merge branch 'master' into dt64_timeslots
2022-07-16 22:33:46 +02:00
zvonand
728219e640
updated due to review
2022-07-16 22:16:19 +02:00
zvonand
9ac7e41e07
updated docs
2022-07-16 19:45:33 +02:00
zvonand
d07a652883
merge
2022-07-16 19:05:07 +02:00
zvonand
4ab52b6873
added new DataType + fixes
2022-07-16 18:58:47 +02:00
Xoel Lopez Barata
10625e7c54
Fix typo
...
Replace "indicies" by "indices"
2022-07-14 17:41:48 +02:00
Vladimir C
b5011b5157
Merge pull request #39169 from FArthur-cmd/add_docs_for_dist_func
...
Documentation for array's distance functions
2022-07-14 12:36:17 +02:00
Nikolay Degterinsky
9ca2935d72
Add default argument to function file
2022-07-14 09:54:44 +00:00
Nikolay Degterinsky
e3a79520c1
Merge remote-tracking branch 'upstream/master' into translate
2022-07-13 11:42:40 +00:00
FArthur-cmd
411a08630c
add docs
2022-07-13 10:29:13 +00:00
Nikolay Degterinsky
185978bfbe
Add docs
2022-07-13 01:52:25 +00:00
Andrey Zvonov
7bfe155f09
Merge branch 'master' into dt64_timeslots
2022-07-12 10:26:38 +03:00
Nikolay Degterinsky
5c5c7ae6db
Fix typos
2022-07-07 02:17:57 +00:00
DanRoscigno
95c3eff4c7
remove 404ing original article URL
2022-06-30 11:17:38 -04:00
Nikolay Degterinsky
384603a656
Merge pull request #38592 from ClibMouse/PR_38549_updates
...
Updated Geo Functions Index.md
2022-06-30 03:20:37 +02:00
HeenaBansal2009
6bf9c7cd4d
Updated index file for Geo functions
2022-06-29 12:21:05 -07:00
Maksim Kita
c45e9a36bd
Merge pull request #38549 from ClibMouse/Issue_38457
...
Updated Index file for GeoFunctions
2022-06-29 12:11:43 +02:00
HeenaBansal2009
d5886e4861
Updated Index file for GeoFunctions
2022-06-28 19:24:06 -07:00
Kruglov Pavel
7ec83add46
Merge pull request #38454 from mdonkers/docs-clarify-datetime64-parsing
...
Docs: clarify processing of DateTime64 values
2022-06-27 15:09:09 +02:00
Miel Donkers
674188bd7f
Docs: clarify processing of DateTime64 values
2022-06-27 12:19:30 +02:00
Andrey Zvonov
c18d09a617
Merge branch 'master' into zvonand-base58
2022-06-24 07:05:49 +03:00
zvonand
a94c40e33a
Merge branch 'master' of github.com:ClickHouse/ClickHouse into dt64_timeslots
2022-06-23 17:08:28 +05:00
zvonand
946117ec89
Merge branch 'master' of github.com:ClickHouse/ClickHouse into zvonand-base58
2022-06-23 17:04:40 +05:00
zvonand
e33324bd35
fix docs
2022-06-23 16:56:28 +05:00
zvonand
7ae7b1e421
fix wrong docs location
2022-06-22 14:58:39 +05:00
zvonand
a7ff956c83
updated docs
2022-06-22 14:56:37 +05:00
Alexey Milovidov
5855668514
Remove trash
2022-06-22 06:23:35 +02:00
zvonand
9c6b2b9ba0
added docs
2022-06-20 20:10:28 +05:00
Alexey Milovidov
3da495d15e
Merge pull request #37779 from ClickHouse/like_match_utf8
...
Clarify that match() & like() use UTF-8 for matching
2022-06-18 05:43:52 +03:00
Robert Schulze
ba0761fb6a
More details on matching with Unicode
2022-06-17 15:29:32 +02:00
Robert Schulze
26b3dd2d9e
Fix description
2022-06-17 13:41:58 +02:00
Kruglov Pavel
023e7132fc
Fix
2022-06-16 14:50:35 +02:00
Kruglov Pavel
d14a2d3583
Fix docs about encryption functions
2022-06-16 14:47:15 +02:00
zvonand
fb67b080b9
added docs
2022-06-10 14:30:17 +03:00
Mikhail f. Shiryaev
62f60c1462
Merge branch 'master' into doc-aspell
2022-06-09 11:01:25 +02:00
Maksim Kita
ec7b99e564
ExecutableUserDefinedFunctions added parameters documentation
2022-06-08 16:59:41 +02:00
vdimir
9bd9c3d1d1
Fix some typos in docs
2022-06-08 14:26:02 +02:00
Rich Raposa
567f98b1e4
Merge pull request #37784 from ClickHouse/rfraposa-patch-2
...
Remove H1 anchor tags from docs
2022-06-02 15:51:28 -06:00
mergify[bot]
2e637df7c6
Merge branch 'master' into like_match_utf8
2022-06-02 17:37:52 +00:00
Maksim Kita
3261134f6d
Merge pull request #37762 from den-crane/patch-13
...
Doc. Note about Map supported types
2022-06-02 19:26:26 +02:00
Maksim Kita
e8ab3e3395
Update tuple-map-functions.md
2022-06-02 19:25:59 +02:00
Sergei Trifonov
1efd59f0b9
Improve high-order array functions descriptions
2022-06-02 17:16:25 +02:00
rfraposa
869967de41
Remove H1 anchor tags from docs
2022-06-02 04:55:18 -06:00
Robert Schulze
0588142b7e
Clarify that match() & like() assume UTF-8
...
The previous explanation sentence
"The regular expression works with the string as if it is a set of bytes."
suggested otherwise and since we don't have separate methods matchUTF8()
and likeUTF8(), it makes sense to clarify.
2022-06-02 11:56:06 +02:00
Denny Crane
320fd567dd
Update tuple-map-functions.md
2022-06-01 15:38:41 -03:00
Denny Crane
608ad73c93
Update tuple-map-functions.md
2022-06-01 15:34:15 -03:00
Sergei Trifonov
2589f78135
Fix misleading arrayFunction description
2022-05-30 10:32:22 +02:00
Maksim Kita
58cd1bd3ec
Merge pull request #36843 from bharatnc/ncb/h3-unidirectionaledges-funcs
...
add h3 unidirectional edge functions
2022-05-25 22:46:40 +02:00
Alexey Milovidov
3431376d4e
Merge pull request #37396 from MasterOdin/patch-1
...
Fix docs for regionToTopContinent parameters
2022-05-23 03:09:53 +03:00
Alexey Milovidov
5d43f46908
Update ym-dict-functions.md
2022-05-23 03:09:28 +03:00
Denny Crane
f8e2e0f1b2
Update uuid-functions.md
2022-05-22 20:24:18 -03:00
Denny Crane
5984d9993d
Update uuid-functions.md
2022-05-22 20:17:45 -03:00
Matthew Peveler
4c005e53b6
Update ym-dict-functions.md
2022-05-20 15:54:23 -04:00
Matthew Peveler
91bd0b6f69
Fix docs for regionToTopContinent parameters
2022-05-20 15:52:19 -04:00
Denny Crane
c3c468af86
Update random-functions.md
2022-05-19 21:16:27 -03:00
Bharat Nallan Chakravarthy
c476b8dd92
Merge remote-tracking branch 'upstream/master' into ncb/h3-unidirectionaledges-funcs
2022-05-17 20:10:03 -07:00
Alexander Gololobov
38f291c70d
Merge pull request #37030 from bharatnc/ncb/h3-missing-traversal-funcs
...
add remaining h3 traversal funcs
2022-05-17 18:19:56 +02:00
rfraposa
044e76d91b
Add BLAKE3 hash function
2022-05-11 12:10:16 -06:00
Rich Raposa
34f0d1c5f8
Revert "BLAKE3 hash function documentation"
2022-05-10 13:28:36 -06:00
Rich Raposa
23608b5e53
Merge pull request #36999 from BoloniniD/BLAKE3_docs
...
BLAKE3 hash function documentation
2022-05-10 13:28:21 -06:00
bharatnc
592de6895c
Merge remote-tracking branch 'upstream/master' into ncb/h3-missing-traversal-funcs
2022-05-09 22:41:03 -07:00
ni1l
f1eee40345
Add isIPAddressInRange function example
2022-05-10 00:03:10 +08:00
bharatnc
6fc6acf93b
docs for h3HexRing
2022-05-08 22:16:40 -07:00
bharatnc
2721955f49
docs for h3Distance
2022-05-08 22:05:44 -07:00
bharatnc
a6cc23aaed
docs for h3Line
2022-05-08 22:05:39 -07:00
BoloniniD
aa21a8925f
Fixes
2022-05-07 17:08:40 +03:00
Alexey Milovidov
fd363695dc
Update array-functions.md
2022-05-07 13:48:11 +03:00
Alexey Milovidov
40c049b0c9
Update bit-functions.md
2022-05-07 13:47:15 +03:00
Alexey Milovidov
0cac59a9f9
Update string-functions.md
2022-05-07 13:46:17 +03:00
mergify[bot]
2d1057bc87
Merge branch 'master' into fix-substring-negative-offset-length
2022-05-07 10:30:39 +00:00
BoloniniD
0cf6f66fcf
Add BLAKE3 hash docs
2022-05-07 12:08:37 +03:00
bharatnc
01ea1beee5
Merge remote-tracking branch 'upstream/master' into ncb/h3-unidirectionaledges-funcs
2022-05-04 15:55:56 -07:00
Sergei Trifonov
6730ad9799
update docs for time window functions
2022-05-03 19:12:42 +02:00
bharatnc
0491341953
docs for h3GetUnidirectionalEdgeBoundary
2022-05-02 21:53:39 -07:00
bharatnc
680fb0f265
docs for h3GetUnidirectionalEdgesFromHexagon
2022-05-01 22:38:01 -07:00
bharatnc
03db6738bb
docs for h3GetIndexesFromUnidirectionalEdge
2022-05-01 21:34:32 -07:00
bharatnc
b5a914ed04
docs for h3GetDestinationIndexFromUnidirectionalEdge
2022-05-01 14:11:53 -07:00
bharatnc
9ec187ef22
docs for h3GetOriginIndexFromUnidirectionalEdge
2022-05-01 13:53:44 -07:00
bharatnc
59e1f252fd
docs for h3UnidirectionalEdgeIsValid func
2022-05-01 13:27:48 -07:00
bharatnc
925afc8f19
docs for h3GetUnidirectionalEdge
2022-05-01 11:12:11 -07:00
Rich Raposa
8c3f313671
Merge pull request #36791 from ClickHouse/rfraposa-patch-3
...
Various docs fixes
2022-04-29 06:09:23 -06:00
rfraposa
e7b7b7ecd3
Various docs fixes
2022-04-29 05:33:51 -06:00
Maksim Kita
fc4f241f01
Fix documentation for executable user defined functions configuration
2022-04-28 18:01:10 +02:00
mergify[bot]
705d5af3a0
Merge branch 'master' into to_start_of_five_minutes
2022-04-24 22:24:24 +00:00
Alexey Milovidov
b06c544256
Merge pull request #36292 from simpl1g/simpl1g/fix-json-value-docs
...
[DOCS] JSON_VALUE return unquoted string after 21.12
2022-04-25 01:22:22 +03:00
Memo
956d525840
fix conflict
2022-04-22 11:22:50 +08:00
Memo
39aadf0975
replaced toStartOfFiveMinute to toStartOfFiveMinutes
2022-04-22 10:49:59 +08:00
rfraposa
6576fd88c1
EOL fixes
2022-04-19 13:50:45 -06:00
Konstantin Ilchenko
1b8b43af52
[DOCS] JSON_VALUE return unqouted string after 21.12
2022-04-15 13:03:59 +02:00
rfraposa
d9e6f780db
Fixed broken links
2022-04-10 23:01:34 -06:00
rfraposa
4da4259c78
Added reference docs to sidebar
2022-04-10 21:27:48 -06:00
rfraposa
8f01fe9c49
Revised /en folder
2022-04-09 07:34:21 -06:00
rfraposa
5250d9ad11
Removed /ja folder, cleaned up /ru markdown
2022-04-09 07:29:05 -06:00
Alexey Milovidov
4502fb0117
Merge pull request #35581 from kceventus/patch-1
...
Update index.md
2022-04-05 00:55:50 +03:00
Nikolai Kochetov
19819c72f8
Merge pull request #35290 from bigo-sg/function_enumerate_streams
...
Add function getTypeSerializationStreams
2022-04-04 12:09:53 +02:00
Alexey Milovidov
d9e5ca2119
Merge pull request #34394 from holadepo/last_day
...
Add toLastDayOfMonth function
2022-04-04 07:02:08 +03:00
Alexey Milovidov
9854b55835
Revert "Format changes for new docs"
2022-04-04 02:05:35 +03:00
rfraposa
72a00e2c62
Fixed broken links
2022-04-02 17:38:54 -06:00
rfraposa
560471f991
Update /sql-reference docs
2022-03-29 22:06:21 -06:00
rfraposa
33e28bcb18
Updated /development folder
2022-03-29 08:26:35 -06:00
rfraposa
a5c7a947ad
Merge branch 'master' of github.com:rfraposa/ClickHouse
2022-03-28 23:09:52 -06:00
rfraposa
c05bf7beb4
Testing new /en folder
2022-03-28 23:09:17 -06:00
taiyang-li
7889059f7d
fix building
2022-03-25 22:39:57 +08:00
taiyang-li
4788006030
Merge branch 'master' into function_enumerate_streams
2022-03-25 22:31:10 +08:00
Kerry Clendinning
097ff9cc98
Update index.md
...
Fixed spelling "retuned" -> "returned"
2022-03-24 08:35:22 -05:00
李扬
1d8ab36de0
Update other-functions.md
2022-03-23 21:44:14 +08:00
taiyang-li
98a9b81c1d
update doc
2022-03-21 14:23:25 +08:00
Maksim Kita
24c4ab1bd2
Added docs
2022-03-18 19:54:52 +01:00
Maksim Kita
9e88f3b4b9
Merge pull request #34568 from bharatnc/ncb/h3-misc-funcs-3
...
add remaining h3 miscellaneous functions
2022-03-17 11:55:58 +01:00
taiyang-li
d9391f2f7b
fix conflict
2022-03-17 17:31:37 +08:00
Maksim Kita
f837f609f3
Merge pull request #35240 from kitaisreal/cast-to-ip-address-refactoring
...
Standardize behaviour of CAST into IPv4, IPv6, toIPv4, toIPv6 functions
2022-03-17 10:26:32 +01:00
Nikita Mikhaylov
96c6325fc3
Merging #33398 (proportionsZTest) ( #35157 )
2022-03-16 13:17:07 +01:00
taiyang-li
93550d547e
add doc and tests
2022-03-15 18:25:36 +08:00
Maksim Kita
2211e016cb
Merge pull request #35254 from ClickHouse/rfraposa-patch-3
...
Update rounding-functions.md
2022-03-14 09:31:58 +01:00
Rich Raposa
fa3c3f9179
Update rounding-functions.md
...
Adding a clarification about the use case of `roundDuration`
2022-03-13 21:27:02 -06:00
Rich Raposa
67587a8ed0
Update json-functions.md
...
Clarified the wording about the assumptions - which only apply to the `visitParam` functions
2022-03-13 21:19:29 -06:00
Maksim Kita
3a2b3ce503
Standardize behaviour of CAST into IPv4, IPv6, toIPv4, toIPv6 functions
2022-03-12 17:12:05 +00:00
rfraposa
5a4466cec7
Update references in docs
2022-03-12 00:24:31 -06:00
Alexey Milovidov
76520a138e
Change examples in docs
2022-03-12 00:36:03 +01:00
alexey-milovidov
240b5e8199
Update ym-dict-functions.md
2022-03-05 13:23:52 +03:00
bharatnc
fb2a9a26df
Merge remote-tracking branch 'upstream/master' into ncb/h3-misc-funcs-3
2022-02-25 20:36:31 -08:00
Maksim Kita
174257dad0
Merge pull request #34653 from kitaisreal/executable-udf-support-specify-argument-names
...
ExecutableUserDefinedFunctions allow to specify argument names
2022-02-22 00:02:14 +01:00
Maksim Kita
f3dca476ae
Updated documentation
2022-02-18 15:35:18 +00:00
Maksim Kita
5373eae076
Updated documenttation
2022-02-16 15:49:27 +00:00
zzsmdfj
4dcb411f4f
to #31092_add_encodeURLComponent_function
2022-02-16 10:19:20 +08:00
bharatnc
d1056e1147
add docs for h3GetPentagonIndexes func
2022-02-13 12:56:43 -08:00
bharatnc
b4ca0dc20d
add docs for h3GetRes0indexes func
2022-02-13 12:56:43 -08:00
bharatnc
babcf4da3d
add docs for h3PointDistRads func
2022-02-13 12:56:43 -08:00
bharatnc
8bb108ea67
add docs for h3PointDistKm
2022-02-13 12:56:42 -08:00
bharatnc
8549bc1d16
docs for h3PointDistM
2022-02-13 12:56:42 -08:00
RogerYK
45296fd039
Merge remote-tracking branch 'upstream/master' into fix-substring-negative-offset-length
2022-02-10 15:58:33 +08:00
Nikolay Degterinsky
05b89ee865
Merge pull request #34443 from fanofxiaofeng/patch-3
...
remove (nearly) duplicated description
2022-02-09 12:41:54 +03:00
靳阳
cad23926aa
remove (nearly) duplicate description
...
remove (nearly) duplicate description
2022-02-09 16:48:31 +08:00
靳阳
673b874cc4
the name
seems to be missing
...
the `name` seems to be missing
2022-02-09 10:50:53 +08:00
Habibullah Oladepo
57ff05b6e6
Add new function toLastDayOfMonth
2022-02-08 23:48:44 +01:00
RogerYK
6fab7ec882
Merge remote-tracking branch 'upstream/master' into fix-substring-negative-offset-length
2022-01-26 19:42:08 +08:00
RogerYK
c2e8322895
Update old docs
2022-01-26 15:59:40 +08:00
cmsxbc
4d7073ceed
1. generic addressToLine and addressToLineWithInlines, 2. improve addressToLineWithInlines document
2022-01-26 00:20:19 +08:00
cmsxbc
58dd1a2d5c
add function addressToLineWithInlines
2022-01-25 19:13:47 +08:00
Maksim Kita
4100512818
Merge pull request #33621 from bharatnc/ncb/h3-misc-funcs
...
add h3 misc functions - part 2
2022-01-22 12:20:06 +01:00
alexey-milovidov
8cabd373e1
Merge pull request #32170 from FrankChen021/hex
...
Allows hex() to work on type of UUID
2022-01-22 13:03:22 +03:00
bharatnc
3342c64110
Merge remote-tracking branch 'upstream/master' into ncb/h3-misc-funcs
2022-01-20 20:21:56 -08:00
mergify[bot]
8e7b26bae0
Merge branch 'master' into ncb/degrees-radians-funcs
2022-01-20 22:30:27 +00:00
Bharat Nallan
adbdc3153a
improvements to tests for h3kRing and h3ToChildren funcs ( #33311 )
2022-01-20 17:08:13 +03:00
Vladimir C
7156e64ee2
Merge pull request #33360 from RogerYK/feat/bitSlice
2022-01-20 16:20:27 +03:00
bharatnc
0483d14bb9
docs for degrees and radians
2022-01-19 22:18:45 -08:00
alexey-milovidov
6533791592
Merge pull request #33688 from lvkrlv/patch-2
...
Update h3.md
2022-01-20 06:34:33 +03:00
mergify[bot]
e6d10d8bfb
Merge branch 'master' into fix_doc_tupleHammingDistance
2022-01-19 14:15:32 +00:00
Bharat Nallan
4dd8b65a1c
add h3ToCenterChild function ( #33313 )
2022-01-19 16:04:23 +03:00
Yohann Jardin
b0de356f4b
fix/doc: update output type of tupleHammingDistance
2022-01-19 00:11:28 +01:00
Yohann Jardin
b1a35c934f
fix/doc: close code highlight before tuplePlus
2022-01-18 20:38:30 +01:00
frank chen
3391f3f06e
Change the order
...
Signed-off-by: frank chen <frank.chen021@outlook.com>
2022-01-18 14:27:08 +08:00
Maksim Kita
110b39add4
H3 remove functions degsToRads, radsToDegs
2022-01-17 14:42:50 +00:00
Leonid Krylov
a108073065
Update h3.md
...
Edit h3ToGeo description.
2022-01-16 21:47:43 +03:00
bharatnc
03d9eeec8b
docs h3NumHexagons
2022-01-14 00:26:06 -08:00
bharatnc
a175425651
minor fixes to docs
2022-01-13 23:51:09 -08:00
bharatnc
768a6c47b1
docs h3ExactEdgeLengthRads
2022-01-13 23:50:16 -08:00
bharatnc
4a3aef2ecf
docs h3ExactEdgeLengthKm
2022-01-13 23:41:32 -08:00
bharatnc
01630aafee
docs for h3ExactEdgeLengthM
2022-01-13 22:22:44 -08:00
bharatnc
76e059b8ea
docs for h3EdgeLengthKm
2022-01-13 19:19:23 -08:00
RogerYK
0a9ea6a388
Merge remote-tracking branch 'upstream/master' into feat/bitSlice
2022-01-11 23:24:48 +08:00
RogerYK
8707e3bea1
make implementation clear and add more test
2022-01-11 23:22:16 +08:00
bharatnc
e61ef2d3f2
docs for h3CellAreaRads2
2022-01-08 15:23:47 -08:00
bharatnc
924cb5dede
docs for h3CellAreaM2
2022-01-08 15:23:46 -08:00
bharatnc
abd2c65106
docs for h3HexAreaKm2
2022-01-08 15:23:46 -08:00
bharatnc
21e18c5b8d
docs for h3RadsToDegrees
2022-01-08 15:23:46 -08:00
bharatnc
8b3fad9a61
docs for h3DegsToRads
2022-01-08 15:23:46 -08:00
Maksim Kita
ff645a062a
Merge pull request #33465 from kitaisreal/function-array-last-index
...
Added function arrayLastIndex
2022-01-08 23:08:04 +03:00
Mojtaba Yaghoobzadeh
72d28e3c0a
Fix returned value
...
There is a mistake in section "Example for range key dictionary". The returned value is not correct.
2022-01-08 17:46:03 +03:30
Maksim Kita
7d1d1e739f
Added documentation
2022-01-08 11:39:05 +03:00
mergify[bot]
905d5be288
Merge branch 'master' into add-decodeURLFormComponent
2022-01-08 01:22:40 +00:00
Denny Crane
0cb9e979ca
actualize trailing zeros removal in documentation
2022-01-07 14:53:17 -04:00
alexey-milovidov
140d64f785
Merge pull request #33415 from kitaisreal/function-array-last
...
Added function arrayLast
2022-01-07 20:37:06 +03:00
Maksim Kita
0cb4c71a53
Function arrayLast added documentation
2022-01-07 19:00:37 +03:00
cmsxbc
37349a9d0f
add function decodeURLFormComponent
2022-01-07 20:51:30 +08:00
tekeri
4e402baa84
Fix typo: command_write_timeout
2022-01-07 14:19:48 +09:00
Denny Crane
466078031d
Update date-time-functions.md
2022-01-04 18:53:01 -04:00
Denny Crane
7261e121dd
Update string-search-functions.md
2022-01-03 16:19:54 -04:00
RogerYK
86db17e70f
Add comment and docs
2022-01-03 16:31:11 +08:00
Maksim Kita
8e83f2d154
Updated documentation
2022-01-02 20:02:53 +03:00
Maksim Kita
4f62155b84
UserDefinedExecutableFunction fix documentation
2022-01-02 16:46:11 +03:00
Maksim Kita
49d4619890
Updated docs
2021-12-28 22:55:31 +03:00
Frank Chen
7cb8171d37
Merge branch 'ClickHouse:master' into hex
2021-12-13 13:24:22 +08:00
vxider
52fa82b4d4
rename window-view function to time window function
2021-12-10 09:43:44 +00:00
vxider
eb759c83f6
window view docs improvement
2021-12-08 14:43:26 +00:00
vxider
afcc3b6f96
add doc window-view-functions
2021-12-07 13:35:30 +00:00
vxider
ed17afbdb3
rename window function to window view function
2021-12-07 10:31:49 +00:00
vxider
03dc76da15
add window view doc(en)
2021-12-07 10:05:19 +00:00
vdimir
e0fa4731fb
Fix typo in tupleToNameValuePairs doc
2021-12-06 12:57:09 +03:00
frank chen
c6f1d7d292
Add examples in doc
...
Signed-off-by: frank chen <frank.chen021@outlook.com>
2021-12-03 11:27:41 +08:00
Vladimir C
964203e712
Merge pull request #31545 from sevirov/sevirov-DOCSUP-18083-document_the_murmurhash3_128_and_siphash128_functions
2021-11-29 13:59:56 +03:00
Vladimir C
645ae45b01
Apply suggestions from code review
2021-11-29 13:59:20 +03:00
Vladimir C
41c9067f48
Merge pull request #31706 from yandd/master
2021-11-26 12:29:09 +03:00
alexey-milovidov
51a0d6c2f3
Update json-functions.md
2021-11-26 00:20:37 +03:00
yandd
7b43608e1f
Fixed function ngrams
2021-11-24 21:18:38 +08:00
Dmitriy
a6d33aaf03
Translate to Russian
...
Выполнил перевод на русский язык.
2021-11-22 20:52:09 +03:00
filimonov
9b06430cbd
Update string-search-functions.md
2021-11-22 14:05:23 +01:00
Dmitriy
8dab82f00c
Document some hash functions
...
Задокументировал две хеш-функции sipHash128 и murmurHash3_128.
2021-11-19 21:34:31 +03:00
alexey-milovidov
2248f43a99
Update tuple-map-functions.md
2021-11-18 08:03:49 +03:00
Maksim Kita
59c855c038
Merge pull request #31012 from karnevil13/karnevil-DOCSUP-16608
...
DOCSUP-16608: Documented JSONExtractKeys function
2021-11-12 16:29:43 +03:00
Anton Popov
b897bc3a5e
Merge pull request #30835 from lehasm/alexey-sm-DOCSUP-14792-update-bitShift-functions
...
DOCSUP-14792-document-bitShift-functions
2021-11-11 15:23:47 +03:00
Roman Bug
b8248cdc95
Minor fix.
2021-11-09 13:08:47 +03:00
Roman Bug
d8f1ff7727
Update docs/en/sql-reference/functions/other-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-09 13:02:06 +03:00
romanzhukov
206c72ed50
DOCSUP-15137: Add zookeeperSessionUptime docs.
2021-11-08 00:42:57 +03:00
taiyang-li
38a1afaca7
add docs
2021-11-07 20:51:14 +08:00
karnevil13
628957e153
Update docs/en/sql-reference/functions/json-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-06 23:59:32 +03:00
karnevil13
56ba0423f1
Update docs/en/sql-reference/functions/json-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-06 23:58:50 +03:00
karnevil13
9bb0eb6adc
Update docs/en/sql-reference/functions/json-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-06 23:58:36 +03:00
karnevil13
54138c4873
Update docs/en/sql-reference/functions/json-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-06 23:58:24 +03:00
karnevil13
38dad4b02b
Update docs/en/sql-reference/functions/json-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-06 23:58:15 +03:00
karnevil13
e89f4a1159
Update docs/en/sql-reference/functions/json-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-06 23:58:06 +03:00
karnevil13
4408aa86fb
DOCSUP-16608: [CLICKHOUSEDOCS] Documented JSONExtractKeys function
2021-11-02 20:27:51 +03:00
Alexey
74089272b9
Added 'Query:'
2021-11-01 19:42:38 +00:00
Alexey
59b4752693
Int/UInt reverted to Intereg types
...
Some updates
2021-11-01 19:17:46 +00:00
lehasm
daa0f1e021
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:37:53 +03:00
lehasm
2ea6f0cddd
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:37:36 +03:00
lehasm
caff0bf63e
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:37:07 +03:00
lehasm
ec9d794246
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:35:25 +03:00
lehasm
d024efd9b4
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:35:07 +03:00
lehasm
4e4db85784
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:34:46 +03:00
lehasm
f6550b6ec1
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:33:20 +03:00
lehasm
ec9eca4551
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:32:21 +03:00
lehasm
2ff38cd128
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:32:00 +03:00
lehasm
f9ceaecc2d
Update docs/en/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-01 18:31:37 +03:00
Vladimir C
9d967e9883
Merge pull request #30840 from nickitat/nickitat_any_type_4_arrayStringConcat
2021-11-01 11:48:45 +03:00
alexey-milovidov
15b9d65221
Merge pull request #30662 from azat/conf-clickhouse
...
Switch everything left from `<yandex>` to `<clickhouse>`
2021-10-31 14:56:51 +03:00
Maksim Kita
cf0fbbbc17
Merge pull request #30406 from andrc1901/andrc1901-DOCSUP-16606-translate_to_russian
...
DOCSUP-16606: [CLICKHOUSEDOCS] Edit and translate to Russian
2021-10-29 23:53:45 +03:00
Maksim Kita
ca5886a362
Merge pull request #30669 from gyuton/gyuton-DOCSUP-14091-Document-the-tupleToNameValuePairs
...
DOCSUP-14091: Documented the tupleToNameValuePairs
2021-10-29 23:52:58 +03:00
gyuton
a5cd1aa294
Apply suggestions from code review
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-10-29 22:24:14 +03:00
Kseniia Sumarokova
2050d0a33d
Merge pull request #30793 from lingtaolf/feature/function_mapExtractKeyLike
...
Add new function mapExtractKeyLike
2021-10-29 21:54:39 +03:00
Nikolai Kochetov
8316e4d420
Merge pull request #30147 from ka1bi4/romanzhukov-DOCSUP-14101-Edit-and-translate-to-Russian-mapPopulateSeries
...
DOCSUP-14101: [CLICKHOUSEDOCS] Edit and translate to Russian
2021-10-29 15:12:45 +03:00
Roman Bug
2ac17c57ec
DOCSUP-15710: [CLICKHOUSEDOCS] Edit and translate to Russian (s2 functions) ( #29787 )
2021-10-29 14:28:41 +03:00
mergify[bot]
65df198e9b
Merge branch 'master' into conf-clickhouse
2021-10-28 22:19:42 +00:00
Nickita Taranov
982d38e60c
update docs
2021-10-29 00:40:42 +03:00
Alexey
4ae73c9493
en draft
2021-10-28 20:30:16 +00:00
Kruglov Pavel
31a1fa6b4c
Merge pull request #30417 from ka1bi4/romanzhukov-DOCSUP-16598-normalizeUTF8
...
DOCSUP-16598: [CLICKHOUSEDOCS] Document the normalizeUTF8 functions
2021-10-28 16:09:54 +03:00
Roman Bug
1eec90b765
Merge branch 'master' into romanzhukov-DOCSUP-14101-Edit-and-translate-to-Russian-mapPopulateSeries
2021-10-28 15:23:04 +03:00
凌涛
39322cdbe2
add a new function mapExtractKeyLike
2021-10-28 17:15:32 +08:00
Alexey
8210af91e3
bitShiftLeft draft
2021-10-28 04:25:53 +00:00
凌涛
fb6716f4ac
add doc
2021-10-27 11:56:55 +08: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
Azat Khuzhin
e0cd7a8304
docs: switch <yandex> to <clickhouse>
2021-10-26 08:52:29 +03:00
gyuton
a714219137
Merge branch 'master' into gyuton-DOCSUP-14091-Document-the-tupleToNameValuePairs
2021-10-26 01:15:13 +03:00
gyuton
81bd4a0679
Small fix
2021-10-26 00:15:46 +03:00
gyuton
a9ef0359d9
documented the function
2021-10-26 00:01:31 +03:00
Andrei Ch
1bc542980c
adding ngrams
2021-10-25 19:15:28 +03:00
Andrei Ch
65be1e9668
moving tokens from file to file
2021-10-25 19:14:49 +03:00
Andrei Ch
bedf82873f
Merge branch 'master' into andrc1901-DOCSUP-16606-translate_to_russian
2021-10-25 18:21:12 +03:00
Anton Popov
b87c819c10
Merge pull request #30566 from nickitat/nickitat_nullable_4_arrayStringConcat
...
Support Nullable(String) type in arrayStringConcat
2021-10-25 16:04:20 +03:00
Vladimir C
5130f65cdf
Merge pull request #30418 from gyuton/gyuton-DOCSUP-16593-document-tuple-functions-and-operators
2021-10-25 16:00:04 +03:00
gyuton
63b814671d
draft
2021-10-25 14:18:51 +03:00
vdimir
21c8b561ec
Minor changes in tuple math docs
2021-10-25 14:13:12 +03:00
Roman Bug
a211e48c3c
Update docs/en/sql-reference/functions/string-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-10-25 13:44:50 +03:00
Roman Bug
2c20fbe571
Add ru translation for UTF normalized forms.
2021-10-25 12:46:50 +03:00
Roman Bug
96e3d776e2
Merge branch 'master' into romanzhukov-DOCSUP-14101-Edit-and-translate-to-Russian-mapPopulateSeries
2021-10-24 23:11:52 +03:00
Alexey
a32c51fa2c
file intro updated
...
some text rewritten
2021-10-24 20:09:06 +00:00
Andrei Ch
1070ad10f3
Update splitting-merging-functions.md
2021-10-24 20:54:29 +03:00
Andrei Ch
3d4b4af307
Merge branch 'master' into andrc1901-DOCSUP-16606-translate_to_russian
2021-10-24 20:54:09 +03:00
Kseniia Sumarokova
cd63b24061
Merge pull request #30450 from morozovsk/patch-10
...
Documentation: JSON_EXISTS/JSON_QUERY/JSON_VALUE
2021-10-24 20:16:29 +03:00
Andrei Ch
60a672ab33
token function adding
2021-10-24 13:27:14 +03:00
Vladimir Goncharov
1b2186b8ad
Update json-functions.md
2021-10-23 19:04:29 +03:00
Roman Bug
258f8cb2f7
Add normalizeUTF8 functions.
2021-10-22 23:10:02 +03:00
gyuton
c694ea97d5
Deleted extra line
2021-10-22 21:05:56 +03:00
Nickita Taranov
f436db8ad4
update docs
2021-10-22 19:45:39 +03:00
Alexey
2f8cdf0480
bitshiftleft draft
2021-10-22 16:33:23 +00:00
gyuton
6111f61b2c
Minor fix
2021-10-22 17:56:10 +03:00
gyuton
b55a9cc6d4
Apply suggestions from code review
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-10-22 17:47:36 +03:00
Maksim Kita
54fed3ae0e
Merge pull request #30467 from gyuton/gyuton-DOCSUP-16362-Document-the-ngram-function
...
DOCSUP-16362: Documented the ngrams function
2021-10-22 10:22:12 +03:00
Maksim Kita
11ed2e2997
Update splitting-merging-functions.md
2021-10-22 00:18:26 +03:00
Dmitriy
894353d910
Translate to Russian
...
Выполнил перевод на русский язык.
2021-10-21 21:33:47 +03:00
Andrei Ch
cf088eebe5
Delete function bayesAB
2021-10-21 21:29:03 +03:00
Vladimir Goncharov
900a359362
Update json-functions.md
...
english version
2021-10-21 16:39:10 +03:00
Dmitriy
b0752b43ac
Add the getOSKernelVersion function
...
Задокументировал английскую версию функции getOSKernelVersion.
2021-10-20 20:20:14 +03:00
gyuton
7cb6cddf6d
Initial draft
2021-10-20 19:52:18 +03:00
gyuton
59ee426d48
small improvement
2021-10-20 02:00:54 +03:00
gyuton
1d76fc9636
Small fix
2021-10-20 01:59:27 +03:00
Roman Bug
73f65bbe75
Rewrite Normalization Form C (NFC)
2021-10-20 01:42:39 +03:00
gyuton
c1d24037a4
Initial draft
2021-10-20 01:42:05 +03:00
Roman Bug
170a4957ca
Add normalizeUTF8NFC function
2021-10-20 01:31:39 +03:00
Roman Bug
3c9025d04e
Add max argument for mapPopulateSeries function
2021-10-20 00:17:13 +03:00
romanzhukov
97d228f64b
Update mapPopulateSeries
...
Update mapPopulateSeries
2021-10-15 23:03:49 +03:00
Nikolai Kochetov
769be69f15
Merge pull request #30029 from karnevil13/karnevil-DOCSUP-14788
...
DOCSUP-14788: Edit and translate to Russian
2021-10-15 11:38:43 +03:00
karnevil13
8ec43b7c70
fixed type-conversion-functions en-ru
2021-10-15 00:56:21 +03:00
Maksim Kita
b854726228
Updated documentation
2021-10-14 13:19:53 +03:00
Maksim Kita
562c8984a4
Added documentation
2021-10-14 13:15:45 +03:00
karnevil13
7c6ef01a04
em dash fixed
2021-10-14 02:00:40 +03:00
karnevil13
c6ac339403
Updated desc-en
2021-10-13 01:02:01 +03:00
Maksim Kita
e95a4a35ef
Merge pull request #29784 from ka1bi4/romanzhukov-DOCSUP-15370-h3-functions
...
DOCSUP-15370: [CLICKHOUSEDOCS] Edit and translate to Russian (H3 functions)
2021-10-12 23:47:32 +03:00
Nikita Mikhaylov
b17aba0e5b
Merge pull request #29793 from lehasm/alexey-sm-DOCSUP-14057-document-shardNum-shardCount
...
DOCSUP-14057-document-shardNum-shardCount
2021-10-12 19:15:34 +03:00
Maksim Kita
c968c7463c
Merge pull request #29534 from ka1bi4/romanzhukov-DOCSUP-13910-SHA512
...
DOCSUP-13910: Edit and translate to Russian (SHA512 function and note for materialized views)
2021-10-12 12:35:49 +03:00
Ivan Milov
d809fa0456
Edited and translated to Russian
...
Edit the English version of changes and translate to Russian where needed.
2021-10-12 01:52:42 +03:00
Alexey
7f5852a711
New buildId variant
...
Links from Distributed
2021-10-09 18:37:28 +00:00
Alexey
f854065744
buildID() description
2021-10-08 05:05:12 +00:00
romanzhukov
00fbf48a68
Minor fixes.
2021-10-07 19:09:40 +03:00
Alexey
c2533b9743
constant or column note added for other functions
2021-10-06 20:13:46 +00:00
Alexey
4894588f27
description improved
...
new example
2021-10-06 19:50:05 +00:00
romanzhukov
1550c167bb
Update ru translation.
2021-10-06 18:14:51 +03:00
Alexey
2266115c54
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into alexey-sm-DOCSUP-14057-document-shardNum-shardCount
2021-10-05 19:35:46 +00:00
romanzhukov
af94e30a95
Update H3 functions
...
Update en and add ru draft.
2021-10-05 22:12:44 +03:00
Nikolay Degterinsky
e2551e8cb0
Merge pull request #29490 from mehrshadhosseini28/patch-1
...
Update nlp-functions.md
2021-10-04 18:37:18 +03:00
romanzhukov
57c5d9d382
Update hash-functions.md
...
minor fix
2021-10-04 00:29:46 +03:00
Roman Bug
8d9602432b
Merge branch 'master' into romanzhukov-DOCSUP-13910-SHA512
2021-10-04 00:27:36 +03:00
romanzhukov
271f7995c0
Fix PR comments.
2021-10-04 00:19:37 +03:00
alexey-milovidov
ac57e057a1
Merge pull request #23028 from ClickHouse/cast_to_value_or_default
...
Merging #21330
2021-10-03 11:00:48 +03:00
alexey-milovidov
b29e877f26
Merge pull request #29182 from ClickHouse/yandex-to-clickhouse-in-configs
...
Replace `<yandex>` to `<clickhouse>` in configs and more.
2021-10-01 12:24:12 +03:00
Nikita Tikhomirov
2d23f40fd2
Added documentation for MD4 and SHA384 functions. Supplementing documentation with SHA-512 where it was missing.
2021-10-01 04:38:34 +03:00
mergify[bot]
8852f933bc
Merge branch 'master' into yandex-to-clickhouse-in-configs
2021-09-29 21:48:43 +00:00
Nikita Mikhaylov
54ac0801a2
Merge pull request #28669 from bharatnc/ncb/s2-function-docs
...
Add initial docs for s2 functions
2021-09-30 00:06:34 +03:00
romanzhukov
b226429435
Fix links, add 512 translation.
2021-09-29 18:41:15 +03:00
romanzhukov
e312156b1c
Add note about Materialized views
2021-09-29 17:52:39 +03:00
Maksim Kita
a5151fb49b
Function accurateCastOrDefault updated implementation
2021-09-29 17:52:08 +03:00
romanzhukov
d75136c3b1
Update hash functions (SHA) en
2021-09-29 16:59:56 +03:00
mergify[bot]
6a2ac6e871
Merge branch 'master' into yandex-to-clickhouse-in-configs
2021-09-29 13:29:08 +00:00
Maksim Kita
9cce37ee87
Merge pull request #29331 from lehasm/alexey-sm-DOCSUP-15139-document--RELOAD-FUNCTION
...
DOCSUP-15139: document user defined functions (XML config)
2021-09-29 11:58:41 +03:00
lehasm
ca203c943e
Update docs/en/sql-reference/functions/index.md
...
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-09-29 08:26:32 +03:00
lehasm
900dad6d6f
Update docs/en/sql-reference/functions/index.md
...
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-09-29 08:25:44 +03:00
lehasm
85826bb014
Update docs/en/sql-reference/functions/index.md
...
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-09-29 08:24:56 +03:00
Seyed Mehrshad Hosseini
24e2a8bd89
Update nlp-functions.md
2021-09-28 17:56:35 +03:30
Maksim Kita
1e5e93830b
Merge branch 'master' into cast_to_value_or_default
2021-09-28 14:04:10 +03:00
Alexey
eeea3caf49
typos
2021-09-27 20:32:38 +00:00
Alexey
af1fbb1d6e
en fixes
2021-09-27 20:15:15 +00:00
mergify[bot]
64669a28ce
Merge branch 'master' into yandex-to-clickhouse-in-configs
2021-09-26 22:59:23 +00:00
Alexey
59a69b64e0
Improved text
2021-09-26 19:44:53 +00:00
bharatnc
74b5c71717
Merge remote-tracking branch 'upstream/master' into ncb/s2-function-docs
2021-09-25 23:00:08 -07:00
bharatnc
ada1baff74
Add more review fixes
2021-09-25 22:59:50 -07:00
bharatnc
ed7617554f
Add review fixes
2021-09-25 22:44:44 -07:00
Alexey
89c5d7e5ea
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into alexey-sm-DOCSUP-15139-document--RELOAD-FUNCTION
2021-09-25 19:33:24 +00:00
bharatnc
a5a8d132d0
Fix doc references
2021-09-25 10:15:12 -07:00
Alexey Milovidov
82d57c6e47
Merge branch 'master' into yandex-to-clickhouse-in-configs
2021-09-25 01:38:39 +03:00
Alexey
455550ab03
en draft
2021-09-24 11:44:29 +00:00
alexey-milovidov
b8083929a6
Merge branch 'master' into yandex-to-clickhouse-in-configs
2021-09-23 20:49:40 +03:00
bharatnc
f02d81be24
Merge remote-tracking branch 'upstream/master' into ncb/complete-h3-inspection-funcs
2021-09-23 08:59:39 -07:00
Dmitriy
8f9a45ea05
DOCSUP-14458: Edit and translate to Russian (two settings and subBitmap function) ( #28996 )
...
* Edit and translate to Russian
Выполнил перевод на русский язык.
* Update settings.md
Поправил документацию.
* Update docs/ru/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/ru/operations/settings/settings.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/ru/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/ru/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/ru/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update bitmap-functions.md
Обновил описание.
* Update docs/ru/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/ru/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/en/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/ru/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update docs/en/sql-reference/functions/bitmap-functions.md
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
* Update subBitmap function
Поправил описание функции subBitmap.
Co-authored-by: Dmitriy <sevirov@yandex-team.ru>
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-09-22 19:12:31 +03:00
mergify[bot]
fd39fc58d7
Merge branch 'master' into yandex-to-clickhouse-in-configs
2021-09-22 13:35:20 +00:00
Kruglov Pavel
e8dca52e8b
Merge pull request #28946 from sevirov/sevirov-DOCSUP-13429-document_the_short_circuit_function_evaluation_setting
...
DOCSUP-13429: Document the short_circuit_function_evaluation setting
2021-09-22 15:33:52 +03:00
quoctan132
c1453a0786
Update rounding-functions.md
...
Wrong result in the Examples of Banker’s rounding
2021-09-22 15:12:35 +07:00
bharatnc
706dc1d206
Docs for h3GetFaces func
2021-09-21 17:41:37 -07:00
Alexey Milovidov
e9e77b4403
.tech -> .com
2021-09-22 03:22:57 +03:00
bharatnc
e5dd24d14f
Docs for h3IsPentagon func
2021-09-21 17:02:00 -07:00
bharatnc
c09fae78e7
Docs for func h3ResIsClassIII
2021-09-21 16:52:47 -07:00
alexey-milovidov
0880ae2883
Merge branch 'master' into yandex-to-clickhouse-in-configs
2021-09-21 20:17:28 +03:00
Alexey
6277747e8a
First draft
2021-09-20 05:37:18 +00:00
Alexey Milovidov
147ef79670
Change website URL, part 1
2021-09-20 01:56:28 +03:00
Ivan Blinkov
f429db1ee9
find . -type f -name '*.md'| xargs -I{} perl -pi -e 's| https://clickhouse.tech | https://clickhouse.com |g' {}
2021-09-19 23:05:54 +03:00
Dmitriy
816bd7184f
Update examples
...
Упростил примеры.
2021-09-18 15:09:56 +03:00
mergify[bot]
d4ac1fdba0
Merge branch 'master' into h3-functions
2021-09-15 21:24:31 +00:00
Dmitriy
ad8812a3e2
Translate to Russian
...
Перевел на русский язык.
2021-09-15 22:15:52 +03:00
Dmitriy
b0f4149503
Merge remote-tracking branch 'remotes/clickhouse/master' into sevirov-DOCSUP-13429-document_the_short_circuit_function_evaluation_setting
2021-09-15 20:56:12 +03:00
Dmitriy
6bc4b76d9a
Update docs/en/sql-reference/functions/logical-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-09-15 20:36:43 +03:00
Dmitriy
eea48c9382
Update docs/en/sql-reference/functions/logical-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-09-15 20:36:37 +03:00
Dmitriy
0a90394776
Update docs/en/sql-reference/functions/conditional-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-09-15 20:36:29 +03:00
Dmitriy
059fbde903
Update docs/en/sql-reference/functions/conditional-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-09-15 20:36:19 +03:00
Denny Crane
efd4ac381b
Update rounding-functions.md
2021-09-14 00:19:17 -03:00
fuzzERot
dba428c443
Implementation of h3ToGeoBoundary
2021-09-12 23:47:51 +03:00
Dmitriy
3db36056c9
Update the short_circuit_function_evaluation setting
...
Обновил описание.
2021-09-12 20:20:20 +03:00
Dmitriy
a67bf8615a
Document the short_circuit_function_evaluation setting
...
Задокументировал новую настройку.
2021-09-12 17:36:04 +03:00
Vladimir C
aee967de3d
Merge pull request #28194 from ka1bi4/romanzhukov-DOCSUP-12543-bin-unbin-functions
2021-09-11 10:47:17 +03:00
Vladimir C
a581603964
Apply suggestions from code review
2021-09-11 10:46:55 +03:00
Maksim Kita
4f4cc9d740
Merge pull request #27994 from lehasm/alexey-sm-DOCSUP-13375-document-CREATE-DROP-FUNCTION
...
DOCSUP-13375: Document the SQL-statements CREATE FUNCTION and DROP FUNCTION
2021-09-10 00:55:43 +03:00
gyuton
47e1ecc05a
Update docs/en/sql-reference/functions/tuple-map-functions.md
...
Co-authored-by: Nikolay Degterinsky <43110995+evillique@users.noreply.github.com>
2021-09-09 18:40:02 +03:00
bharatnc
be0a2c0333
Docs - minor corrections
2021-09-07 22:25:50 -07:00
Alexey
46638f1290
Links to CREATE FUNCTION and DROP FUNCTION from function Introduction
2021-09-07 19:32:12 +00:00
mergify[bot]
9dd9b7d430
Merge branch 'master' into gyuton-DOCSUP-11552-Fix-and-update-documentation
2021-09-07 13:28:28 +00:00
bharatnc
1180d33ecf
Docs - S2Rect functions
2021-09-06 15:40:52 -07:00
bharatnc
5bbf761a68
Docs - S2 Cap,Union,Contains,Intersect functions
2021-09-06 15:40:52 -07:00
bharatnc
21ba2c6596
Docs - S2 functions
2021-09-06 15:40:52 -07:00
George
27876193fc
Small fix
2021-09-06 15:36:20 +03:00
alesapin
603e455a18
Merge pull request #27988 from ka1bi4/romanzhukov-DOCSUP-DOCSUP-13431-ZooKeeper-snowflake
...
DOCSUP-13431: Edit and translate to Russian (ZooKeeper replication and snowflake)
2021-09-06 10:51:33 +03:00
George
66efe4202c
Fixed and updated
2021-09-06 02:34:09 +03:00
romanzhukov
f0414ed7f9
Fix err arg.
2021-09-01 21:05:22 +03:00
Roman Zhukov
248a97201c
Fix PR comments.
2021-09-01 14:26:36 +00:00
romanzhukov
981fdadaa6
Fix links errors.
2021-08-31 14:24:56 +03:00
Roman Zhukov
b7d647d74b
Fix PR comments.
2021-08-31 06:45:22 +00:00
Roman Bug
ff5f5e9f77
Update docs/en/sql-reference/functions/encoding-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-08-31 09:34:32 +03:00
Roman Bug
43529c4e09
Update docs/en/sql-reference/functions/encoding-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-08-31 09:34:25 +03:00
Roman Bug
36e5462142
Update docs/en/sql-reference/functions/encoding-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-08-31 09:34:18 +03:00
Roman Bug
5bbeb0e935
Update docs/en/sql-reference/functions/encoding-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-08-31 09:34:11 +03:00
Roman Zhukov
2ce6d2760f
Update bin/unbin
2021-08-30 14:10:13 +00:00
Roman Zhukov
61091395cd
Update bin/unbin
2021-08-30 13:35:27 +00:00
Dmitriy
c9db269569
Merge remote-tracking branch 'remotes/clickhouse/master' into sevirov-DOCSUP-13590-document_the_getserverport_function
2021-08-29 19:00:29 +03:00
tavplubix
7fce331475
Merge pull request #28103 from sevirov/sevirov-DOCSUP-13434-document_the_serveruuid_function
...
DOCSUP-13434: Document the serverUUID() function
2021-08-28 17:17:01 +03:00
Dmitriy
554e51b13a
Update docs/en/sql-reference/functions/uuid-functions.md
...
Co-authored-by: Anna <42538400+adevyatova@users.noreply.github.com>
2021-08-28 11:54:41 +03:00
Roman Bug
95dce33551
Merge branch 'ClickHouse:master' into romanzhukov-DOCSUP-12543-bin-unbin-functions
2021-08-26 17:26:56 +03:00
Alexey Boykov
d455cc0069
Merge pull request #27950 from sevirov/sevirov-DOCSUP-12065-document_queryid_and_initialqueryid_functions
...
DOCSUP-12065: Document queryID and initialQueryID functions
2021-08-26 14:35:08 +03:00
Roman Zhukov
35fd0b80f4
Update bin/unbin fucntions
2021-08-26 11:16:05 +00:00
Dmitriy
b62fb1e8cf
Update docs/en/sql-reference/functions/other-functions.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-08-25 22:30:14 +03:00
Dmitriy
80b6097dae
Fix typo
...
Убрал лишние отступы.
2021-08-25 20:33:00 +03:00
Dmitriy
7295bf95b3
Update docs/en/sql-reference/functions/other-functions.md
...
Co-authored-by: Alexey Boykov <33257111+mathalex@users.noreply.github.com>
2021-08-25 20:16:16 +03:00
Dmitriy
e8e60e1a60
Update docs/en/sql-reference/functions/other-functions.md
...
Co-authored-by: Alexey Boykov <33257111+mathalex@users.noreply.github.com>
2021-08-25 20:15:57 +03:00
Dmitriy
f1be822a1a
Update docs/en/sql-reference/functions/other-functions.md
...
Co-authored-by: Alexey Boykov <33257111+mathalex@users.noreply.github.com>
2021-08-25 20:14:04 +03:00