Skip to content

Commit 101cde5

Browse files
IndexSeekayman-sigma
authored andcommitted
fix: update DuckDB and ClickHouse documentation links (apache#1978)
1 parent 6ee888f commit 101cde5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/ast/ddl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ pub enum AlterTableOperation {
149149
},
150150
/// `ATTACH PART|PARTITION <partition_expr>`
151151
/// Note: this is a ClickHouse-specific operation, please refer to
152-
/// [ClickHouse](https://clickhouse.com/docs/en/sql-reference/statements/alter/pakrtition#attach-partitionpart)
152+
/// [ClickHouse](https://clickhouse.com/docs/en/sql-reference/statements/alter/partition#attach-partitionpart)
153153
AttachPartition {
154154
// PART is not a short form of PARTITION, it's a separate keyword
155155
// which represents a physical file on disk and partition is a logical entity.

src/ast/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ pub enum Expr {
11671167
///
11681168
/// [ClickHouse](https://clickhouse.com/docs/en/sql-reference/functions#higher-order-functions---operator-and-lambdaparams-expr-function)
11691169
/// [Databricks](https://docs.databricks.com/en/sql/language-manual/sql-ref-lambda-functions.html)
1170-
/// [DuckDb](https://duckdb.org/docs/sql/functions/lambda.html)
1170+
/// [DuckDB](https://duckdb.org/docs/stable/sql/functions/lambda)
11711171
Lambda(LambdaFunction),
11721172
/// Checks membership of a value in a JSON array
11731173
MemberOf(MemberOf),

src/dialect/duckdb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl Dialect for DuckDbDialect {
6565
true
6666
}
6767

68-
/// See <https://duckdb.org/docs/sql/functions/lambda.html>
68+
/// See <https://duckdb.org/docs/stable/sql/functions/lambda>
6969
fn supports_lambda_functions(&self) -> bool {
7070
true
7171
}

0 commit comments

Comments
 (0)