Robert Schulze
b746224217
Merge pull request #42554 from arenadata/ADQM-604
...
Add support of Date32 arguments for dateName function
2022-10-22 17:20:10 +02:00
Alexey Milovidov
bc6762d613
Merge pull request #42565 from alexeyerm/other-functions.md-fix
...
other-functions.md example fix
2022-10-22 04:20:23 +02:00
Alexey Milovidov
592fbb3eaf
Merge pull request #42367 from ClickHouse/revert-40217
...
Revert #40217
2022-10-21 21:56:15 +02:00
Dan Roscigno
440af00c74
Merge pull request #42151 from ClickHouse/remove-misc-statements
...
Docs: Remove obsolete misc page
2022-10-21 13:48:53 -04:00
alexeyerm
e1fccbd161
doc fix fix
2022-10-21 20:09:46 +03:00
alexeyerm
4b4d1e8a5d
doc fix fix
2022-10-21 20:09:19 +03:00
alexeyerm
9abfe76fbb
doc fix fix
2022-10-21 20:08:44 +03:00
alexeyerm
d25ecb9f0b
fix transform() example
2022-10-21 19:47:38 +03:00
alexeyerm
930c60d71e
fix transform() example
2022-10-21 19:45:37 +03:00
alexeyerm
95943dbdda
fix transform() example
2022-10-21 19:44:35 +03:00
Robert Schulze
2d448c139c
Merge pull request #42308 from arenadata/ADQM-584
...
Add support of Date32 arguments for date_diff function
2022-10-21 13:18:44 +02:00
Roman Vasin
537f7000d6
Update documentation
2022-10-21 06:55:24 +00:00
Alexey Milovidov
48694def2c
Merge branch 'master' into revert-40217
2022-10-21 05:49:34 +02:00
Alexey Milovidov
b720030ac6
Remove outdated documentation
2022-10-21 00:13:30 +02:00
Robert Schulze
9b7294ef45
Merge remote-tracking branch 'origin/master' into revert-40217
2022-10-20 15:27:31 +00:00
Robert Schulze
52eefe1ffd
Fix 02403_enable_extended_results_for_datetime_functions
2022-10-20 13:25:48 +00:00
Robert Schulze
42f680849c
Fix bad_cast in Annoy index
...
- Problem originally found by data type fuzzer
https://s3.amazonaws.com/clickhouse-test-reports/42180/2f83d8790581dce0ffeec56c137b1d13160cfa7b/fuzzer_astfuzzermsan//report.html
- This commit restricts which data types are allowed for Annoy indexes
(similar things are done for other index types).
2022-10-19 13:40:39 +00:00
Alexey Milovidov
2834143bd4
Merge pull request #42446 from ezirmusitua/master
...
zh-CN translation for getting-started/example-datasets
2022-10-18 23:14:31 +02:00
DanRoscigno
e76560619c
moved into dev/getting-started
2022-10-18 14:52:28 -04:00
Dan Roscigno
1e3584df83
Merge branch 'master' into master
2022-10-18 14:13:54 -04:00
DanRoscigno
c772dbb5d6
fix broken links and wrong colon char
2022-10-18 11:54:29 -04:00
jferroal
123e1aea65
Doc: fix metadata
2022-10-18 22:57:45 +08:00
jferroal
6e100adcb4
Doc: fix metadata
2022-10-18 22:57:23 +08:00
jferroal
e89b390ee3
Doc: add zh-CN translation
...
getting-started/example-datasets/opensky.mdx
2022-10-18 22:56:49 +08:00
jferroal
e504cec743
Doc: add zh-CN translation
...
getting-started/example-datasets/recipes.mdx
2022-10-18 22:55:58 +08:00
jferroal
1e7afba015
Doc: Add zh-CN translation
...
getting-started/example-datasets/menus.mdx
2022-10-18 08:57:27 +08:00
jferroal
d038d2b478
Doc: Add zh-cn translation
...
getting-started/example-datasets/cell-towers.mdx
2022-10-18 08:54:59 +08:00
Vitaly Baranov
eb637a6f81
Merge pull request #42232 from azat/backups/s3
...
Support BACKUP to S3 with as-is path/data structure
2022-10-18 02:37:07 +02:00
Alexey Milovidov
2023f38764
Fixups
2022-10-17 05:50:24 +02:00
Alexey Milovidov
d1f0c80ffe
Revert "Merge pull request #40217 from zvonand/zvonand-minmax"
...
This reverts commit df934d8762
, reversing
changes made to d3a7945b1b
.
2022-10-17 04:57:15 +02:00
jferroal
2376df7b98
Fix: page slug
2022-10-17 09:27:05 +08:00
jferroal
b3aea48b9d
Doc: zh-CN translation
...
docs/zh/getting-started/example-datasets/brown-benchmark
2022-10-17 09:22:46 +08:00
Alexey Milovidov
9ccbadc359
Merge pull request #42275 from zimv/doc-update-client-libraries
...
Docs: Add "node-clickhouse-orm" to the client-libraries.md
2022-10-15 08:18:16 +02:00
Kruglov Pavel
6fc12dd922
Merge pull request #41703 from Avogar/json-object-each-row
...
Add setting to obtain object name as column value in JSONObjectEachRow format
2022-10-14 20:11:04 +02:00
jferroal
edfc388b7c
Doc: add zh translation ( #42312 )
2022-10-14 16:29:03 +02:00
Azat Khuzhin
8830f0608d
Support BACKUP to S3 with as-is path/data structure
...
Right now backup to S3 does not make a lot of sense, since:
- it has random names, and to decoding them
- requires metadata from local disk (/var/lib/disks/DISK/BACKUP_NAME)
- or send_metadata (but it is also tricky even with it)
So this patch adds simpler interface for S3, it is only suitable for
BACKUP/RESTORE, so don't try to use it for MergeTree engine.
It is done by adding separate disk - `s3_plain` for this, that:
- does not support any extended features, like renames/hardlinks/attrs/...
(so basically everything that MergeTree requires)
- only write/read/unlink/list files
Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
2022-10-14 12:59:25 +02:00
Roman Vasin
90f9bd24a3
Update documentation
2022-10-14 08:02:38 +00:00
zimv
56ef17e083
Docs: Add "node-clickhouse-orm" to the client-libraries.md
2022-10-13 14:57:35 +08:00
Alexey Milovidov
5b6be92042
Update build.md
2022-10-13 05:31:50 +03:00
vdimir
0178307c27
Followup for TemporaryDataOnDisk
2022-10-12 15:25:23 +02:00
Alexey Milovidov
023f11fb86
Update developer-instruction.md
2022-10-09 03:54:00 +03:00
Alexey Milovidov
9bf5fe728b
Merge pull request #42173 from ClickHouse/remove-temporary-live-view
...
Remove TEMPORARY LIVE VIEW
2022-10-08 19:05:33 +03:00
Alexey Milovidov
b9159db82f
Remove temporary live views
2022-10-08 00:16:36 +02:00
Robert Schulze
3e3c0a7bb6
Docs: Add "TABLE" to CHECK/DESCRIBE statements in sidebar
2022-10-07 14:41:00 +00:00
Robert Schulze
cde0257d11
Docs: Remove obsolete pages
...
Removes page https://clickhouse.com/docs/en/sql-reference/statements/misc
It indexes "miscellaneous" SQL statements but these are already easily
reachable by the sidebar.
2022-10-07 14:37:22 +00:00
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
Nikolay Degterinsky
522948fa2a
Merge branch 'master' into patch-1
2022-10-06 17:47:36 +02:00
Nikolay Degterinsky
c5ff73cb25
Merge branch 'master' into master
2022-10-06 16:55:34 +02:00
Dan Roscigno
41fb3cb7da
Merge branch 'master' into combine-requirements-install-docs
2022-10-06 09:39:11 -04:00
DanRoscigno
655d2b298d
adjust heading level
2022-10-06 09:38:30 -04:00