Skip to content

Commit 35b0603

Browse files
committed
Merge branch 'main' of https://github.com/ClickHouse/clickhouse-docs into rsickles-patch-11
2 parents fa1b183 + 2922be2 commit 35b0603

File tree

53 files changed

+6103
-1165
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+6103
-1165
lines changed

contribute/style-guide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ sidebar_label: 'Using clickhouse-local database'
1616
slug: /chdb/guides/clickhouse-local
1717
description: 'Learn how to use a clickhouse-local database with chDB'
1818
keywords: ['chdb', 'clickhouse-local']
19+
doc_type: 'reference' (or 'guide' or 'changelog')
1920
---
2021
```
2122

@@ -26,7 +27,7 @@ keywords: ['chdb', 'clickhouse-local']
2627
There is a custom Docusaurus plugin which runs on build that makes the following
2728
checks on front-matter:
2829

29-
- title, description and slug are specified.
30+
- title, description, slug and doc_type (either `reference`, `guide`, `landingpage` or `changelog`) are specified.
3031
- keywords use flow style arrays with single quoted items e.g.
3132
`keywords: ['integrations']`
3233
- single quotes are used for title, description, slug, sidebar_label
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Image from '@theme/IdealImage';
22
import cloud_service_action_menu from '@site/static/images/_snippets/cloud-service-actions-menu.png';
33

4-
Select your service, followed by `Data souces` -> `Predefined sample data`.
4+
Select your service, followed by `Data sources` -> `Predefined sample data`.
55

66
<Image size="md" img={cloud_service_action_menu} alt="ClickHouse Cloud service Actions menu showing Data sources and Predefined sample data options" border />

docs/best-practices/partitioning_keys.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ For example, consider the following UK price paid dataset table with a partition
2323
```sql
2424
CREATE TABLE uk.uk_price_paid_simple_partitioned
2525
(
26-
date Date,
27-
town LowCardinality(String),
28-
street LowCardinality(String),
29-
price UInt32
26+
date Date,
27+
town LowCardinality(String),
28+
street LowCardinality(String),
29+
price UInt32
3030
)
3131
ENGINE = MergeTree
3232
ORDER BY (town, street)

0 commit comments

Comments
 (0)