Robert Schulze
e759a64d38
Docs: Redirect links to misc.md
...
--> https://clickhouse.com/docs/en/sql-reference/statements/misc
This page indexes a bunch of SQL statements but they are easily
reachable by the sidebar already.
2022-10-07 13:22:40 +00:00
Jus
72015dca4d
add %z offset
...
Add placeholder %z
2022-10-06 16:45:18 +04:00
Sergei Trifonov
939b9091cc
Merge pull request #42007 from aldy505/master
...
docs(statements): specify ON CLUSTER clause for CREATE ROLE
2022-10-03 15:13:25 +02:00
Reinaldy Rafli
b52d58dcae
docs(statements): specify ON CLUSTER clause for CREATE ROLE
2022-10-02 09:51:17 +07:00
Roman Vasin
f716fc2fe5
Put list of functions in correct order in docs; Use new formatting in exception messages.
2022-09-30 07:54:35 +00:00
Roman Vasin
45414b251d
Merge branch 'master' of github.com:ClickHouse/ClickHouse into ADQM-583
2022-09-29 17:02:49 +00:00
Roman Vasin
9dfb2d058c
Add DateTime64 returing functions in Note box
2022-09-29 14:23:50 +00:00
mosinnik
a2939c6061
Update from.md
2022-09-29 12:48:38 +03:00
Robert Schulze
6379cb41ce
Merge branch 'master' into fix-links
2022-09-29 09:17:39 +02:00
avogar
c353928eb5
Merge branch 'master' of github.com:ClickHouse/ClickHouse into fix-format-row
2022-09-28 13:15:51 +00:00
Robert Schulze
fa93952231
Docs: Reference external papers as DOIs
...
See also #31076 which noted that links were broken but didn't fix.
2022-09-28 12:21:58 +00:00
Robert Schulze
82139fad0e
Docs: Remove obsolete modelEvaluate() mention
2022-09-28 11:47:16 +00:00
avogar
90e0f98d45
Merge branch 'master' of github.com:ClickHouse/ClickHouse into fix-format-row
2022-09-20 13:55:44 +00:00
Kruglov Pavel
57f0dc1f89
Merge branch 'master' into fix-format-row
2022-09-19 14:37:58 +02:00
Sergei Trifonov
f7a1ed3141
Merge branch 'master' into readonly-settings-allow
2022-09-19 12:52:36 +02:00
Robert Schulze
38aecc15a2
Merge pull request #41214 from arenadata/ADQM-528-B
...
Add enable_extended_results_for_datetime_functions option to return results of type Date32
2022-09-17 19:25:11 +02:00
Robert Schulze
b32b02d844
Merge pull request #40897 from ClickHouse/catboost-bridge-resurrected
...
Move CatBoost evaluation into clickhouse-library-bridge
2022-09-16 13:12:09 +02:00
Roman Vasin
d82cd7b007
Add many cosmetic changes to C++ code and MD docs
2022-09-16 09:37:30 +00:00
Roman Vasin
5c242de43a
Merge branch 'master' of github.com:ClickHouse/ClickHouse into ADQM-528-B
2022-09-15 13:47:51 +00:00
Roman Vasin
3ce66eab83
Correct all needed MD files
2022-09-15 13:28:11 +00:00
Kseniia Sumarokova
c511c3f168
Merge pull request #40889 from AVMusorin/docs_table_function_update
...
Doc. Updated optional parameters for table functions
2022-09-15 13:12:20 +02:00
Robert Schulze
49136d26aa
docs: fix internal links
...
The links at the very beginning of
https://clickhouse.com/docs/en/sql-reference/statements/system
don't work. They are reference other sections of the same document. This
is weird because there is a small index already on the right side. I
searched our documentation and this seems to be the only pages which do
so. Therefore removing the links altogether instead of fixing them.
2022-09-13 19:45:46 +00:00
Robert Schulze
3e6821e8d7
fix: repair broken documentation links and update docs
2022-09-13 16:00:53 +00:00
Robert Schulze
fac1be9700
chore: restore SYSTEM RELOAD MODEL(S) and moniting view SYSTEM.MODELS
...
- This commit restores statements "SYSTEM RELOAD MODEL(S)" which provide
a mechanism to update a model explicitly. It also saves potentially
unnecessary reloads of a model from disk after it's initial load.
To keep the complexity low, the semantics of "SYSTEM RELOAD MODEL(S)
was changed from eager to lazy. This means that both statements
previously immedately reloaded the specified/all models, whereas now
the statements only trigger an unload and the first call to
catboostEvaluate() does the actual load.
- Monitoring view SYSTEM.MODELS is also restored but with some obsolete
fields removed. The view was not documented in the past and for now it
remains undocumented. The commit is thus not considered a breach of
ClickHouse's public interface.
2022-09-12 19:33:02 +00:00
Aleksandr
503398ac96
Merge branch 'master' into docs_table_function_update
2022-09-09 20:54:28 +02:00
avogar
6d5f9e5554
Proper implementation for rowFormat function, delete rowFormatNoNewLine function
2022-09-09 17:42:33 +00:00
Sergei Trifonov
76eb001e78
add test for changeable_in_readonly + fix SQL in docs
2022-09-09 14:01:29 +02:00
Robert Schulze
c16707ff00
chore: delete obsolete modelEvaluate() function + SYSTEM.MODELS view
...
- The deleted function modelEvaluate() was superseded by
catboostEvaluate().
- Also delete the external model repository, as modelEvaluate() was it's
last user. Additionally remove the system view SYSTEM.MODELS for
inspecting the repository.
- SYSTEM RELOAD MODELS is also obsolete. HOWEVER, it was retained and
made a no-op instead of deleted.
Why?
The reason is that RBAC in distributed setups works by storing
privileges (granted and revoked) as plain SQL statements in Keeper.
Nodes read these statements at startup and parse them. If a privilege
for SYSTEM RELOAD MODELS exists but parser doesn't recognize it
nodes would fail to come up.
Considered but rejected alternatives:
- Ignore SYSTEM RELOAD MODELS during parsing RBAC privileges and
return an error for regular SYSTEM RELOAD MODELS SQL. Special-case
of no-op behavior, too brittle.
- Remove SYSTEM RELOAD MODELS manually from Keeper via command-line
manipulation of Keeper nodes or via SQL by dropping the privileges.
Needs user intervention during upgrade.
2022-09-08 09:10:11 +00: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
Robert Schulze
385427ade8
Fix formatting of notes box in documentation
...
Follow-up to PR #38435
2022-09-03 17:25:14 +00:00
Robert Schulze
53836bbeeb
Fix typo
...
The system view is called 'role*_*grants', documented on page
'role*-*grants.md'.
2022-09-02 12:49:50 +00:00
Александр
97e55ca2f5
Merge branch 'master' into docs_table_function_update
2022-09-01 14:01:32 +02:00
Denny Crane
e3af5a7a11
Doc. Added ON CLUSTER cluster in couple places ( #40874 )
2022-09-01 13:31:22 +02:00
Aleksandr Musorin
310e1484f6
docs - updated optional parameters for table functions
2022-09-01 13:28:56 +02: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
Vladimir C
c8c8428052
Apply suggestions from code review
2022-08-30 13:49:21 +02:00
Andrey Zvonov
14adea8792
fix error in docs
2022-08-30 14:40:26 +03:00
Alexey Milovidov
0190c56faf
Merge pull request #40770 from den-crane/patch-40
...
Doc. Fix cache dictionaries doc.
2022-08-30 02:19:32 +03:00
Cory Levy
1e2eee7146
Remove unnecessary backslashes in markdown sql blocks
2022-08-29 16:31:31 -04:00
Robert Schulze
64a6aa328e
fix: broken links in documentation (hopefully)
2022-08-29 20:27:06 +00:00
DanRoscigno
576b7ea604
updates for filename changes
2022-08-29 14:39:15 -04:00
Denny Crane
19c3a9c6bf
Update external-dicts-dict-layout.md
2022-08-29 15:20:46 -03:00
DanRoscigno
753afd0584
update links
2022-08-28 20:41:29 -04:00
DanRoscigno
3c36660488
replace symlinks
2022-08-28 17:27:24 -04:00
Robert Schulze
df934d8762
Merge pull request #40217 from zvonand/zvonand-minmax
...
Fix conversion Date32 / DateTime64 / Date to narrow types
2022-08-28 09:42:39 +02:00
DanRoscigno
726d3c0739
add slugs to all docs
2022-08-26 13:37:11 -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
52159b77d0
Merge branch 'master' into zvonand-minmax
2022-08-23 17:18:57 +03:00
konnectr
ee3f6d7783
ru docs update nlp-functions
2022-08-22 19:37:31 +05: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
zvonand
a7a1269e60
updated tests + improve logic
2022-08-22 17:36:55 +03:00
konnectr
375325601b
ru docs other-functions
2022-08-22 19:36:36 +05:00
konnectr
82b5bb56ca
ru docs update introspection
2022-08-22 19:35:23 +05:00
konnectr
518373e575
ru docs update ext-dict-functions
2022-08-22 19:32:19 +05:00
konnectr
66da1a101c
ru docs update json-functions
2022-08-22 19:29:58 +05:00
konnectr
c53726a236
ru docs update encoding-functions
2022-08-22 19:27:58 +05:00
konnectr
44883aacc4
ru docs update string-search-functions
2022-08-22 19:23:11 +05:00
konnectr
895a5fef4a
ru docs update date-time-functions
2022-08-22 19:20:02 +05:00
konnectr
06d42dcb88
ru update type-conversion
2022-08-22 19:15:25 +05:00
konnectr
8937854dad
ru update array-function
2022-08-22 19:11:55 +05:00
konnectr
f4130c0342
ru docs fix danger
2022-08-21 22:01:17 +05:00
konnectr
c447a8d5ed
docs ru removed blank row
2022-08-21 00:21:19 +05:00
konnectr
00b56552af
docs ru histogram params fixed
2022-08-21 00:18:18 +05:00
konnectr
be821e0143
docs ru fixed danger text
2022-08-20 23:54:19 +05:00
konnectr
29e7c2bb4c
add doc nowInBlock
2022-08-20 22:52:14 +05: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
Yakov Olkhovskiy
1220ac0b7a
Update docs/ru/sql-reference/functions/other-functions.md
2022-08-17 23:28:26 -04:00
Robert Schulze
f121941916
feat: allow custom error code for SQL function throwIf()
2022-08-17 21:14:40 +00:00
Denny Crane
c7aaf9bbc6
Update array-join.md
2022-08-15 16:44:27 -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
1f10c4be8c
Update docs/ru/sql-reference/functions/arithmetic-functions.md
...
Co-authored-by: Nikolay Degterinsky <43110995+evillique@users.noreply.github.com>
2022-08-11 11:25:33 +02: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
Rich Raposa
9f85d85e08
The admonitions were missing section endings ( #40073 )
2022-08-10 21:08:40 +02: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
Alexey Milovidov
97af108756
Update type-conversion-functions.md
2022-08-10 02:00:54 +03: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
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
Dan Roscigno
b9c8feb2b2
Merge pull request #39356 from nickitat/small_addition_to_docs
...
Small addition to mysql dictionary docs
2022-07-26 11:11:28 -04:00
Roman Vasin
b462366415
Merge branch 'master' of github.com:ClickHouse/ClickHouse into ADQM-485
2022-07-25 17:55:47 +00:00
Nikolay Degterinsky
ac7d83055e
Merge pull request #39311 from whysage/doc-fix-aggregatefunction
...
Doc. Fix link in doc AggregateFunction
2022-07-25 18:22:35 +02:00
whysage
a7f0886157
Fix second link in doc AggregateFunction
2022-07-25 18:54:02 +03:00
Denny Crane
31630ff38e
Update string-replace-functions.md
2022-07-24 20:18:49 -03: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
Nikita Taranov
7f6b175c3e
impl
2022-07-18 19:39:10 +02:00
whysage
1adfa8e398
Fix link in doc AggregateFunction
2022-07-18 10:41:57 +03:00
Denny Crane
429b19da8b
Update partition.md
2022-07-17 21:16:40 -03:00
Denny Crane
27326da00b
Update partition.md
2022-07-17 21:12:53 -03: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
d07a652883
merge
2022-07-16 19:05:07 +02:00
zvonand
4ab52b6873
added new DataType + fixes
2022-07-16 18:58:47 +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
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
Alexey Milovidov
74d02aeca7
Merge pull request #38907 from evillique/compression_level
...
Add compression level for data export
2022-07-07 22:27:21 +03:00
Denny Crane
29d75e5a12
Update column.md
2022-07-07 08:21:01 -03:00
Nikolay Degterinsky
fcb6cfb6df
Fix style issues
2022-07-07 08:31:55 +00:00
Nikolay Degterinsky
54d210d714
Add documentation
2022-07-07 01:59:00 +00:00
Denny Crane
9d520e391f
Update index.md
2022-07-06 20:57:25 -03:00
Denny Crane
0a70e596a8
Update update.md
2022-07-06 20:55:19 -03:00
Denny Crane
f361ddcf49
Update partition.md
2022-07-06 20:48:07 -03:00
Denny Crane
d542e8fb7b
Update exchange.md
2022-07-06 20:43:45 -03:00
GruffGemini
9fc7c9f575
Update group-by.md
...
docs (group-by.md): fixed broken links
2022-06-28 17:55:16 +03: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
mergify[bot]
234f0c6399
Merge branch 'master' into revert-35914-FIPS_compliance
2022-06-23 12:06:17 +00: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
a7ff956c83
updated docs
2022-06-22 14:56:37 +05:00
Alexey Milovidov
5855668514
Remove trash
2022-06-22 06:23:35 +02:00
Anton Petrov
d595006f6f
Update view.md
...
fix typo
2022-06-21 22:19:03 +03:00
zvonand
9c6b2b9ba0
added docs
2022-06-20 20:10:28 +05:00
Alexey Milovidov
9d6c6b5e13
Merge pull request #38139 from ClickHouse/Avogar-patch-5
...
Fix docs about encryption functions
2022-06-18 04:10:24 +03:00
DanRoscigno
14ecf4c497
s/Clickhouse/ClickHouse/
2022-06-17 08:40:14 -04:00
Kruglov Pavel
489765aa6d
Fix ru docs
2022-06-16 14:51:49 +02:00
Antonio Andelic
b9cf6fe367
Merge branch 'master' into pp-system-unfreeze
2022-06-13 14:46:30 +00:00
zvonand
fb67b080b9
added docs
2022-06-10 14:30:17 +03:00
Kseniia Sumarokova
daec3d1c87
Update check-table.md
2022-06-09 14:58:37 +02:00
Maksim Kita
ec7b99e564
ExecutableUserDefinedFunctions added parameters documentation
2022-06-08 16:59:41 +02:00
Vadim Volodin
637d293fbd
Add SYSTEM UNFREEZE query
2022-06-08 15:21:14 +03:00
Denny Crane
dc9b11b814
Update map.md
2022-06-01 15:39:45 -03:00
Denny Crane
931d424fa1
Update tuple-map-functions.md
2022-06-01 15:37:13 -03:00
Denny Crane
5d3cc4be26
Update tuple-map-functions.md
2022-06-01 15:35:58 -03:00
Denny Crane
219e46dc8f
Update map.md
2022-06-01 15:29:58 -03:00
Denny Crane
2b78adf628
Update map.md
2022-06-01 15:27:31 -03:00
Denny Crane
1d2cf73b81
Update external-dicts-dict-layout.md
2022-05-28 17:14:36 -03:00
Denny Crane
2395764a92
Update external-dicts-dict-layout.md
2022-05-28 17:07:39 -03:00
Denny Crane
bfc7cbaf1f
Update external-dicts-dict-layout.md
2022-05-28 17:02:27 -03:00
Denny Crane
4573c2431e
Update external-dicts-dict-layout.md
2022-05-28 16:59:55 -03:00
Denny Crane
c478f2c21a
Update uuid-functions.md
2022-05-22 20:13:43 -03:00
Yakov Olkhovskiy
a5e421581d
docs fix
2022-05-20 01:30:45 -04:00
Yakov Olkhovskiy
b7bc40ce58
documentation updated
2022-05-19 22:16:08 -04:00
Denny Crane
f7ead85150
Update boolean.md
2022-05-17 10:49:21 -03:00
Denny Crane
52b7f899b2
Update syntax.md
2022-05-16 11:27:49 -03: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
Vladimir C
425d429044
Merge pull request #37049 from ni1l/master
2022-05-10 12:58:30 +02:00
ni1l
f1eee40345
Add isIPAddressInRange function example
2022-05-10 00:03:10 +08:00
hardstep33
d0bb66604c
Update int-uint.md ( #36404 )
...
add UInt128 in documentation
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2022-05-09 13:36:18 +02:00
Alexey Milovidov
3a2ddac2e6
Merge pull request #33861 from RogerYK/fix-substring-negative-offset-length
...
Fix substring negative offset length
2022-05-08 01:09:36 +03:00
Alexey Milovidov
acf48ef933
Merge pull request #36456 from dzhiryakov/patch-1
...
Fix typo in LowCardinality doc
2022-05-07 15:33:51 +03:00
Alexey Milovidov
43b2664c87
Update array-functions.md
2022-05-07 13:49:03 +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
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
ifinik
2bfda10c76
Update quantiledeterministic.md
...
Пара побившихся ссылок
2022-04-22 23:48:00 +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
dmitriy
30c99d3ef2
Fix typo in LowCardinality doc
2022-04-20 15:55:51 +03:00
Mikhail f. Shiryaev
1e9d80a9c2
Merge pull request #36297 from ClickHouse/docs-staging
...
Docs staging
2022-04-20 10:47:54 +02:00
Yakov Olkhovskiy
f6a7b6c2a1
Merge pull request #36352 from awakeljw/fork_chmaster
...
Possible range issues in automatic assigned enums, also fix error message.
2022-04-19 23:34:35 -04:00
Yakov Olkhovskiy
389cc4b17b
Update enum.md
...
automatic assigned enums for ru is added
2022-04-19 23:33:04 -04:00
rfraposa
476122e92a
Fix broken links
2022-04-19 20:17:01 +02:00
Mikhail f. Shiryaev
7925d925a9
Merge branch 'master' into docs-staging
2022-04-19 11:00:03 +02:00
yjant
0cc90c9568
Update nothing.md
...
Links are wrong.
2022-04-18 09:56:08 +08:00
rfraposa
fb08c5b7e1
Merge branch 'master' into docs-staging
2022-04-15 07:25:27 -06:00
Konstantin Ilchenko
1b8b43af52
[DOCS] JSON_VALUE return unqouted string after 21.12
2022-04-15 13:03:59 +02:00
rfraposa
1afe4300e8
Fixed broken links
2022-04-11 09:55:54 -06:00
rfraposa
d9e6f780db
Fixed broken links
2022-04-10 23:01:34 -06:00
rfraposa
5250d9ad11
Removed /ja folder, cleaned up /ru markdown
2022-04-09 07:29:05 -06:00
Yakov Olkhovskiy
7dbe8bc2dc
major bugs fixed, tests added, docs updated
2022-04-07 01:21:24 -04:00
Yakov Olkhovskiy
90c4cd3de7
Merge branch 'master' into interpolate-feature
2022-04-05 14:39:07 -04:00
Alexey Milovidov
4f33a3053d
Merge pull request #35617 from nikandfor/patch-1
...
fix link in documentation
2022-04-04 07:00:08 +03:00
Yakov Olkhovskiy
4c14c47786
Update table.md
...
allow EPHEMERAL without expression
2022-03-29 04:06:01 -04:00
Nikifor Seriakov
902b402d20
fix link in documentation
2022-03-25 15:37:15 +03:00
Yakov Olkhovskiy
b01f965f31
Update order-by.md
...
fix
2022-03-19 03:03:08 -04:00
Yakov Olkhovskiy
f9ed659959
Update order-by.md
...
INTERPOLATE is added
2022-03-19 03:02:38 -04:00
Yakov Olkhovskiy
40c91c3f98
Update index.md
...
INTERPOLATE is added
2022-03-19 03:01:56 -04:00
Maksim Kita
1392f980a0
Update limit-by.md
2022-03-06 21:30:59 +01:00
Denny Crane
0f37183ca6
Update limit-by.md
2022-03-06 13:34:34 -04:00
Denny Crane
f3f6602180
Update array.md
2022-02-24 20:47:24 -04:00
tangjiangling
fd03f3c309
Update datetimes range in doc
2022-02-24 00:32:09 +08:00
Maksim Kita
bbedd4e706
Update index.md
2022-02-21 17:05:47 +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
Nikolai Kochetov
ab288642f6
Merge branch 'master' into ephemeral-column
2022-02-15 10:03:34 +00:00
Denny Crane
4554f0d542
Update column.md
2022-02-11 15:45:28 -04:00
Denny Crane
7ad3e182ec
Update column.md
2022-02-11 15:40:57 -04:00
Denny Crane
f935c524ea
fix description of MATERIALIZE COLUMN
2022-02-11 15:28:20 -04:00
RogerYK
45296fd039
Merge remote-tracking branch 'upstream/master' into fix-substring-negative-offset-length
2022-02-10 15:58:33 +08:00
yakov-olkhovskiy
b90125bed0
Update table.md
2022-02-08 21:02:47 -05:00
yakov-olkhovskiy
98c5b089a1
Update table.md
...
EPHEMERAL specifier is added
2022-02-08 11:45:49 -05:00
Nikolai Kochetov
392d60eb0d
Update documentation.
2022-02-01 19:09:29 +00:00
grantovsky
1eb72b4544
little fix user.md
...
removed keyword 'NAME' from HOST REGEXP instruction in examples
2022-01-27 12:25:55 +03: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
Filatenkov Artur
852b5fe4b2
Correct paths
2022-01-24 17:37:23 +03:00
mergify[bot]
5ef5e1d558
Merge branch 'master' into karnevil-DOCSUP-18631
2022-01-24 12:09:59 +00:00
Maksim Kita
e5f9f4863f
H3 fix documentation translation
2022-01-22 17:40:31 +00:00
ILya Limarenko
2b8b2d963b
Update logical-functions.md
2022-01-22 15:33:01 +03:00
mergify[bot]
dd7703bb8b
Merge branch 'master' into patch-1
2022-01-21 14:29:37 +00:00
Yohann Jardin
b1a35c934f
fix/doc: close code highlight before tuplePlus
2022-01-18 20:38:30 +01:00
Anton Popov
a25f2518e3
Merge pull request #33141 from 1over/feature_default_keyword
...
Add support of DEFAULT keyword for INSERT
2022-01-18 02:04:37 +03:00
Leonid Krylov
3a10be3cb3
Update h3.md
...
Edit h3ToGeo description.
2022-01-16 21:42:49 +03:00
Denny Crane
0cb9e979ca
actualize trailing zeros removal in documentation
2022-01-07 14:53:17 -04:00
Denny Crane
fbf8dd53d8
Update date-time-functions.md
2022-01-04 18:56:14 -04:00
Nikolay Degterinsky
cec282b9be
Fix docs typos
2021-12-30 03:19:37 +00:00
Denny Crane
9de3fd082e
Update grant.md
2021-12-28 14:14:32 -04:00
Denny Crane
6e70d690c8
Update grant.md
2021-12-28 14:12:13 -04:00
Vladimir C
78710d71b5
Specify sql syntax in code snippets in join.md
2021-12-28 10:49:35 +03:00
Tatiana Kirillova
72a9fe51d2
Update join.md
2021-12-28 09:23:19 +03:00
Tatiana Kirillova
8dc204c280
fix diff and translate
2021-12-27 21:23:09 +03:00
Andrii Buriachevskyi
6a0a0efd29
Update docs with DEFAULT keyword for INSERT statement
2021-12-24 13:45:43 +01:00
Denny Crane
43fa39cec1
Update group-by.md
2021-12-15 12:16:49 -04:00
Alexey Gusev
fa4708b9e1
fix typo
2021-12-14 18:42:43 +03:00
Nikolay Degterinsky
2f62d241b6
Merge pull request #32249 from kirillikoff/kirillikoff-DOCSUP-14791
...
DOCSUP-14791: Document the sparkbar aggregate function
2021-12-09 16:44:05 +03:00
Tatiana Kirillova
3a38520bc7
Update docs/ru/sql-reference/aggregate-functions/reference/sparkbar.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-12-06 21:48:31 +03:00
Tatiana Kirillova
0d89a9b3a2
Update docs/ru/sql-reference/aggregate-functions/reference/sparkbar.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-12-06 21:48:24 +03:00
Tatiana Kirillova
3a5ba8fe44
Update docs/ru/sql-reference/aggregate-functions/reference/sparkbar.md
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-12-06 21:48:09 +03:00
Tatiana Kirillova
fefecde2c4
translate
2021-12-06 20:36:42 +03:00
romanzhukov
5b03dabb09
Update string-search-functions.md
2021-12-06 16:38:19 +03:00
romanzhukov
715a25d4f4
Update query_log settings
...
Update query_views_log.md
Update query_views_log
Minor fixes
2021-12-05 21:16:29 +03:00
romanzhukov
f4055f1957
Update multiFuzzyMatchAny
2021-12-05 19:36:12 +03:00
romanzhukov
030ea3dc3f
..
2021-12-05 02:08:42 +03:00
alexey-milovidov
1f9b542ee9
Merge pull request #32003 from cmsxbc/support-postgresql-style-alter-modify-column
...
Support PostgreSQL style ALTER MODIFY COLUMN
2021-12-01 04:10:41 +03:00
Maksim Kita
e25ac911af
Merge pull request #31458 from ka1bi4/romanzhukov-DOCSUP-16661-polygon-dictionary
...
DOCSUP-16661: [CLICKHOUSEDOCS] Polygon dictionary support read
2021-12-01 01:12:53 +03:00
cmsxbc
366ee3deba
Support PostgreSQL style ALTER MODIFY COLUMN
2021-11-30 21:07:14 +08:00
Vladimir C
ef2571af06
Merge pull request #31585 from lehasm/alexey-sm-DOCSUP-14893-document-COMPRESSION
2021-11-30 11:36:45 +03:00
Vladimir C
c6d49769d9
Apply suggestions from code review
2021-11-30 11:36:03 +03:00
Alexey
37834c30cf
Review addon
2021-11-29 20:17:34 +00:00
lehasm
d1c3f12734
Update docs/ru/sql-reference/statements/insert-into.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-29 23:15:29 +03:00
lehasm
69369385ee
Update docs/ru/sql-reference/statements/select/into-outfile.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-29 23:13:48 +03:00
mergify[bot]
6a8960768a
Merge branch 'master' into karnevil-DOCSUP-18631
2021-11-29 20:12:33 +00: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
Nikolai Kochetov
af44449647
Merge pull request #31396 from andrc1901/andrc1901-DOCSUP-15237-exponentialMovingAverage
...
DOCSUP-15237: Documentation of the exponentialMovingAverage function
2021-11-29 11:17:31 +03:00
Alexey
bc4047ef24
updates
2021-11-28 19:26:51 +00:00
Alexey
c206b903bb
ru translation
2021-11-28 19:18:06 +00:00
Andrei Ch
5f9a200c61
Update exponentialmovingaverage.md
2021-11-27 22:03:03 +03:00
karnevil13
272a3a1ee9
Apply suggestions from code review
...
Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
2021-11-24 22:02:22 +03:00
yandd
7b43608e1f
Fixed function ngrams
2021-11-24 21:18:38 +08:00
Andrei Ch
a43a02d6d2
text correction
2021-11-23 21:50:02 +03:00
andrc1901
b3ad078459
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-23 21:08:13 +03:00
andrc1901
99156b3c5a
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-23 21:07:38 +03:00
andrc1901
0a71bf396c
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-23 21:05:25 +03:00
andrc1901
e7c091b4f0
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-23 21:04:23 +03:00
karnevil13
9a60033fef
Merge branch 'master' into karnevil-DOCSUP-18631
2021-11-23 01:05:12 +03:00
karnevil13
77df8ce0dd
DOCSUP-18631: Edit and translate
2021-11-23 00:44:08 +03:00
Dmitriy
a6d33aaf03
Translate to Russian
...
Выполнил перевод на русский язык.
2021-11-22 20:52:09 +03:00
Kseniia Sumarokova
32911193de
Merge pull request #31394 from lehasm/alexey-sm-DOCSUP-17653-doc-WHERE-EXISTS
...
DOCSUP-17653: document EXISTS(subquery)
2021-11-22 08:57:53 +03:00
romanzhukov
d9b848f99d
DOCSUP-16661: Update example and docs.
2021-11-20 14:28:25 +03:00
romanzhukov
3f1150df2d
DOCSUP-16661: Update example and docs.
2021-11-20 14:15:39 +03:00
Alexey
122b42c36a
Formatting updated. Spelling fix.
...
2 paragraphs reordered.
2021-11-20 08:44:36 +00:00
Alexey
ef6443f3f5
Translated paragraph about NULL from ru to en.
...
Copied corresponding example
2021-11-19 19:21:50 +00:00
Dmitriy
8dab82f00c
Document some hash functions
...
Задокументировал две хеш-функции sipHash128 и murmurHash3_128.
2021-11-19 21:34:31 +03:00
Alexey
108e86bf57
Changed examples: take from dev PR
2021-11-18 19:44:38 +00:00
Andrei Ch
2717a0268a
suggestions are resolved
2021-11-18 20:42:41 +03:00
jus1096
81044e6eef
fix
2021-11-17 15:30:26 +03:00
Alexey
d331f4bece
update
2021-11-16 19:20:33 +00:00
Alexey
4581b37da5
ru
2021-11-16 19:15:02 +00:00
jus1096
538787b749
Fix link to external MySQL dict
...
Corrected link to external dictionary MySQL
2021-11-16 13:49:24 +03:00
Nikolai Kochetov
8dfb221a32
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-16 12:57:44 +03:00
Nikolai Kochetov
e215ed93c5
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-16 12:57:08 +03:00
Nikolai Kochetov
94499ca9cd
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-16 12:57:02 +03:00
Nikolai Kochetov
0b64ce5a26
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-16 12:56:51 +03:00
Nikolai Kochetov
dafd42f261
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
2021-11-16 12:55:36 +03:00
Nikolai Kochetov
6b28dbcff5
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
2021-11-16 12:55:24 +03:00
Nikolai Kochetov
8bf3df5a0f
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
2021-11-16 12:54:52 +03:00
Nikolai Kochetov
b90a07fc35
Update docs/ru/sql-reference/aggregate-functions/reference/exponentialmovingaverage.md
2021-11-16 12:54:26 +03:00
jus1096
b5a653c838
Fix link to external PostgreSQL dict
...
Corrected link to external dictionary PostgreSQL
2021-11-15 18:09:04 +03:00
Andrei Ch
ac4be9751a
toc-priority added
2021-11-14 16:52:07 +03:00
Maksim Kita
f283d46e3a
Merge pull request #30931 from sevirov/sevirov-DOCSUP-14511-document_custom_query_for_database_dictionaries
...
DOCSUP-14511: Document custom query for database dictionaries
2021-11-14 15:24:35 +03:00
Andrei Ch
3157c61d90
Documentation of exponentialMovingAverage
2021-11-13 23:18:59 +03:00
Denny Crane
4302b0504e
Update dictionary.md
2021-11-12 12:51:20 -04:00
alesapin
fe44b167d1
Merge pull request #31110 from sevirov/sevirov-DOCSUP-15458-document_the_alter_table_modify_comment
...
DOCSUP-15458: Document the SQL-statement ALTER TABLE ... MODIFY COMMENT
2021-11-12 16:45:00 +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
Maksim Kita
42ecb28788
Merge pull request #31082 from sevirov/sevirov-DOCSUP-16607-update_the_sql_statement_create_dictionary
...
DOCSUP-16607: Update the SQL-statement CREATE DICTIONARY
2021-11-12 16:29:27 +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
Denny Crane
d7be766581
Update column.md
2021-11-09 17:32:58 -04:00
karnevil13
89ac513f66
Update json-functions.md
2021-11-09 14:49:55 +03:00
tavplubix
9fe6687a62
Merge pull request #31129 from ka1bi4/romanzhukov-DOCSUP-15137-zookeeperSessionUptime
...
DOCSUP-15137: [CLICKHOUSEDOCS] Document the zookeeperSessionUptime() function
2021-11-09 14:14:26 +03:00
vdimir
b51d3d8ceb
Doc dynamically adding/deleting tables to MaterializedPostgreSQL and h3ToGeoBoundary function
...
Co-authored-by: Andrei Ch <andrc1901@yandex-team.ru>
Co-authored-by: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com>
2021-11-08 12:23:02 +03:00
alesapin
cf77fd9ac5
Merge pull request #31128 from den-crane/patch-37
...
Doc. freeze with name
2021-11-08 10:12:07 +03:00
Kseniia Sumarokova
eb546406de
Merge pull request #30954 from olgarev/revolg-DOCSUP-12852-argument_for_StorageMerge_supports_regular_expression
...
DOCSUP-12852: Database argument for Merge table engine supports regular expression
2021-11-08 09:34:08 +03:00
romanzhukov
c88c382e7e
DOCSUP-15137: Minor translation fix.
2021-11-08 00:52:46 +03:00
romanzhukov
206c72ed50
DOCSUP-15137: Add zookeeperSessionUptime docs.
2021-11-08 00:42:57 +03:00
Denny Crane
8541c21aec
Doc. freeze with name
2021-11-07 17:39:37 -04:00
Dmitriy
2f01d45bb2
Translate to Russian
...
Выполнил перевод на русский язык.
2021-11-07 19:04:14 +03:00
karnevil13
61a9515a9b
added translation JSONExtractKeys function
2021-11-07 01:01:37 +03:00
Dmitriy
ab3dbd8108
Translate to Russian
...
Выполнил перевод на русский язык.
2021-11-06 14:24:01 +03:00
Dmitriy
1c08065a37
Translate to Russian
...
Выполнил перевод на русский язык.
2021-11-06 10:52:28 +03:00
lehasm
2e627812e4
Update docs/ru/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-02 23:45:09 +03:00
lehasm
feec26c76d
Update docs/ru/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-02 23:44:58 +03:00
lehasm
28d43a7bbb
Update docs/ru/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-02 23:44:11 +03:00
lehasm
63d07dd87c
Update docs/ru/sql-reference/functions/bit-functions.md
...
Co-authored-by: gyuton <40863448+gyuton@users.noreply.github.com>
2021-11-02 23:44:00 +03:00
olgarev
dd2698ed98
Possible values for db name
2021-11-02 14:29:20 +00:00
olgarev
59d6a7b790
Fix
2021-11-02 09:15:39 +00:00
Alexey
e8c50254a8
RU
2021-11-01 19:42:17 +00:00
tavplubix
3f8f08c49c
Merge pull request #30772 from sevirov/sevirov-DOCSUP-16361-update_the_sql_statement_create_database
...
DOCSUP-16361: Update the SQL-statement CREATE DATABASE
2021-11-01 21:40:48 +03:00
Dmitriy
4d2be6d8bb
Add database engines
...
Добавил движки баз данных.
2021-11-01 19:39:35 +03:00
olgarev
c17bf072fe
Initial
2021-11-01 10:39:25 +00:00
tavplubix
00b71ac24a
Merge pull request #30529 from sevirov/sevirov-DOCSUP-14981-information_schema_database
...
DOCSUP-14981: Information Schema
2021-11-01 12:04:58 +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
211ff056e9
Merge pull request #30419 from karnevil13/karnevil-DOCSUP-16354
...
DOCSUP-16354: Edit and translate to Russian (listen_backlog)
2021-10-31 22:12:39 +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
alexey-milovidov
bc5be3208e
Merge pull request #30815 from simpl1g/doc-add-projection-example
...
[DOCS] Fix ADD PROJECTION example in ru/en docs
2021-10-31 14:29:48 +03:00
Aleksandr Shalimov
0ff8ab70f6
Fix spelling
2021-10-31 19:02:50 +08: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
Alexey
00608bb1bd
ru draft
2021-10-29 15:55:12 +00:00
Anton Popov
c9e114436a
Merge pull request #30342 from lehasm/alexey-sm-DOCSUP-14793-document-describe_include_subcolumns
...
DOCSUP-14793: document describe_include_subcolumns setting
2021-10-29 17:49:03 +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
671b421a31
Merge branch 'master' of https://github.com/ClickHouse/ClickHouse into alexey-sm-DOCSUP-14793-document-describe_include_subcolumns
2021-10-28 19:45:53 +00:00
Dmitriy
3515ab99b6
Translate to Russian
...
Выполнил перевод на русский язык.
2021-10-28 20:27:29 +03:00
Konstantin Ilchenko
88084c715b
[DOCS] Fix ADD PROJECTION example in ru/en docs
2021-10-28 17:34:09 +02: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
Alexey
a09746b4e2
updated related data types
2021-10-28 04:47:16 +00:00
Anton Popov
2bb586bed3
Merge pull request #30541 from gyuton/gyuton-DOCSUP-14941-Document-asynchronous-insert-mode
...
DOCSUP-14941-Document-asynchronous-inserts
2021-10-27 20:25:17 +03:00
gyuton
527474da64
Fix wording
2021-10-27 16:21:50 +03:00
Kseniia Sumarokova
57626438b0
Merge pull request #30469 from kirillikoff/kirillikoff-DOCSUP-13264
...
DOCSUP-13264: Document the SQL-statements INTERSECT, EXCEPT and ANY, ALL operators
2021-10-27 09:48:12 +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
Tatiana Kirillova
da7d491125
Update index.md
2021-10-26 20:10:30 +03:00
gyuton
901e5170a1
small fixes
2021-10-26 16:42:19 +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
Andrei Ch
b7b5661f15
translate tokens to russian
2021-10-26 00:24:38 +03:00
gyuton
81bd4a0679
Small fix
2021-10-26 00:15:46 +03:00
Andrei Ch
1f2b08c0bd
adding ngrams
2021-10-26 00:15:25 +03:00
gyuton
c8f07873f8
translated
2021-10-26 00:04:52 +03:00
gyuton
c08f6cae05
translated to Russian
2021-10-25 22:39:47 +03:00
Andrei Ch
bedf82873f
Merge branch 'master' into andrc1901-DOCSUP-16606-translate_to_russian
2021-10-25 18:21:12 +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
0642aeca3a
Revert "Merge branch 'gyuton-DOCSUP-16593-document-tuple-functions-and-operators' of https://github.com/gyuton/ClickHouse into gyuton-DOCSUP-14941-Document-asynchronous-insert-mode"
...
This reverts commit ccad91b5ef
, reversing
changes made to 4ecd2ed6e2
.
2021-10-25 15:55:04 +03:00
gyuton
ccad91b5ef
Merge branch 'gyuton-DOCSUP-16593-document-tuple-functions-and-operators' of https://github.com/gyuton/ClickHouse into gyuton-DOCSUP-14941-Document-asynchronous-insert-mode
2021-10-25 15:02:46 +03:00
gyuton
af86aea90d
DOCSUP-10111: Documented the entropy aggregate function ( #30237 )
...
* initial commit
* Update draft
* small fix
2021-10-25 14:47:18 +03:00