Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Redirects: add redirects for broken links #3510

Merged
merged 2 commits into from
Mar 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/chdb/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ in the table of contents, please edit the frontmatter of the files directly.

| Page | Description |
|-----|-----|
| [How to query Parquet files](/docs/chdb/guides/querying-parquet) | Learn how to query Parquet files with chDB. |
| [How to query data in an S3 bucket](/docs/chdb/guides/querying-s3) | Learn how to query data in an S3 bucket with chDB. |
| [Using a clickhouse-local database](/docs/chdb/guides/clickhouse-local) | Learn how to use a clickhouse-local database with chDB |
| [How to query Pandas DataFrames with chDB](/docs/chdb/guides/pandas) | Learn how to query Pandas DataFrames with chDB |
| [JupySQL and chDB](/docs/chdb/guides/jupysql) | How to install chDB for Bun |
| [How to query a remote ClickHouse server](/docs/chdb/guides/query-remote-clickhouse) | In this guide, we'll learn how to query a remote ClickHouse server from chDB. |
| [How to query Apache Arrow with chDB](/docs/chdb/guides/apache-arrow) | In this guide, we'll learn how to query Apache Arrow tables with chDB |
| [How to query Parquet files](/chdb/guides/querying-parquet) | Learn how to query Parquet files with chDB. |
| [How to query data in an S3 bucket](/chdb/guides/querying-s3) | Learn how to query data in an S3 bucket with chDB. |
| [Using a clickhouse-local database](/chdb/guides/clickhouse-local) | Learn how to use a clickhouse-local database with chDB |
| [How to query Pandas DataFrames with chDB](/chdb/guides/pandas) | Learn how to query Pandas DataFrames with chDB |
| [JupySQL and chDB](/chdb/guides/jupysql) | How to install chDB for Bun |
| [How to query a remote ClickHouse server](/chdb/guides/query-remote-clickhouse) | In this guide, we'll learn how to query a remote ClickHouse server from chDB. |
| [How to query Apache Arrow with chDB](/chdb/guides/apache-arrow) | In this guide, we'll learn how to query Apache Arrow tables with chDB |
43 changes: 10 additions & 33 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,16 @@ const sidebars = {
},
],
},
{
type: "category",
label: "Operators",
items: [
{
type: "autogenerated",
dirName: "sql-reference/operators",
},
]
},
],
},
{
Expand Down Expand Up @@ -568,33 +578,6 @@ const sidebars = {
},
],
},
{
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removes the "Other Features" section from left sidebar of SQL reference (Introduction will get "Operators")

type: "category",
label: "Other Features",
collapsed: false,
collapsible: false,
items: [
{
type: "doc",
id: "sql-reference/operators/distributed-ddl",
},
{
type: "doc",
id: "sql-reference/operators/exists",
},
{
type: "category",
label: "Operators",
link: { type: "doc", id: "sql-reference/operators/index" },
items: [
{
type: "doc",
id: "sql-reference/operators/in",
},
]
},
],
},
],

integrations: [
Expand Down Expand Up @@ -1753,12 +1736,6 @@ const sidebars = {
description: "Use the right table and database engines for your data",
href: "/engines"
},
{
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removes the link from the top nav to "Other features"

type: "link",
label: "Other Features",
description: "Learn about other features in ClickHouse",
href: "/sql-reference/operators"
}
]
},
{
Expand Down
10 changes: 10 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -2871,6 +2871,11 @@
"destination": "/docs/getting-started/quick-start",
"permanent": true
},
{
"source": "/docs/get-started/quick-start",
"destination": "/docs/getting-started/quick-start",
"permanent": true
},
{
"source": "/docs/sql-reference/dictionaries/external-dictionaries/external-dict",
"destination": "/docs/sql-reference/dictionaries#embedded-dictionaries",
Expand Down Expand Up @@ -3221,6 +3226,11 @@
"destination": "/docs/concepts/why-clickhouse-is-so-fast",
"permanent": true
},
{
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure where this is coming from but there is no such page. BFloat16 has always been on the same page as Floats.

"source": "/docs/sql-reference/data-types/bfloat16",
"destination": "/docs/sql-reference/data-types/float#bfloat16",
"permanent": true
},
{
"source": "/docs/en/:path*",
"destination": "/docs/:path*"
Expand Down