-
Notifications
You must be signed in to change notification settings - Fork 316
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -492,6 +492,16 @@ const sidebars = { | |
}, | ||
], | ||
}, | ||
{ | ||
type: "category", | ||
label: "Operators", | ||
items: [ | ||
{ | ||
type: "autogenerated", | ||
dirName: "sql-reference/operators", | ||
}, | ||
] | ||
}, | ||
], | ||
}, | ||
{ | ||
|
@@ -568,33 +578,6 @@ const sidebars = { | |
}, | ||
], | ||
}, | ||
{ | ||
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: [ | ||
|
@@ -1753,12 +1736,6 @@ const sidebars = { | |
description: "Use the right table and database engines for your data", | ||
href: "/engines" | ||
}, | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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" | ||
} | ||
] | ||
}, | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|
@@ -3221,6 +3226,11 @@ | |
"destination": "/docs/concepts/why-clickhouse-is-so-fast", | ||
"permanent": true | ||
}, | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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*" | ||
|
There was a problem hiding this comment.
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")