Skip to content

Commit 5ec953b

Browse files
authored
fix: update DuckDB and ClickHouse documentation links (#1978)
1 parent 865c191 commit 5ec953b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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
@@ -1144,7 +1144,7 @@ pub enum Expr {
11441144
///
11451145
/// [ClickHouse](https://clickhouse.com/docs/en/sql-reference/functions#higher-order-functions---operator-and-lambdaparams-expr-function)
11461146
/// [Databricks](https://docs.databricks.com/en/sql/language-manual/sql-ref-lambda-functions.html)
1147-
/// [DuckDb](https://duckdb.org/docs/sql/functions/lambda.html)
1147+
/// [DuckDB](https://duckdb.org/docs/stable/sql/functions/lambda)
11481148
Lambda(LambdaFunction),
11491149
/// Checks membership of a value in a JSON array
11501150
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)