File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ pub enum AlterTableOperation {
149
149
} ,
150
150
/// `ATTACH PART|PARTITION <partition_expr>`
151
151
/// 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)
153
153
AttachPartition {
154
154
// PART is not a short form of PARTITION, it's a separate keyword
155
155
// which represents a physical file on disk and partition is a logical entity.
Original file line number Diff line number Diff line change @@ -1144,7 +1144,7 @@ pub enum Expr {
1144
1144
///
1145
1145
/// [ClickHouse](https://clickhouse.com/docs/en/sql-reference/functions#higher-order-functions---operator-and-lambdaparams-expr-function)
1146
1146
/// [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)
1148
1148
Lambda ( LambdaFunction ) ,
1149
1149
/// Checks membership of a value in a JSON array
1150
1150
MemberOf ( MemberOf ) ,
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ impl Dialect for DuckDbDialect {
65
65
true
66
66
}
67
67
68
- /// See <https://duckdb.org/docs/sql/functions/lambda.html >
68
+ /// See <https://duckdb.org/docs/stable/ sql/functions/lambda>
69
69
fn supports_lambda_functions ( & self ) -> bool {
70
70
true
71
71
}
You can’t perform that action at this time.
0 commit comments