This is an automated email from the ASF dual-hosted git repository.

iffyio pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-sqlparser-rs.git


The following commit(s) were added to refs/heads/main by this push:
     new 5ec953bd fix: update DuckDB and ClickHouse documentation links (#1978)
5ec953bd is described below

commit 5ec953bd78dac41690cfa3cf5219103e39b3e877
Author: Tyler White <50381805+indexs...@users.noreply.github.com>
AuthorDate: Sat Jul 26 03:28:55 2025 -0400

    fix: update DuckDB and ClickHouse documentation links (#1978)
---
 src/ast/ddl.rs        | 2 +-
 src/ast/mod.rs        | 2 +-
 src/dialect/duckdb.rs | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/ast/ddl.rs b/src/ast/ddl.rs
index 92936a6f..231ab49c 100644
--- a/src/ast/ddl.rs
+++ b/src/ast/ddl.rs
@@ -149,7 +149,7 @@ pub enum AlterTableOperation {
     },
     /// `ATTACH PART|PARTITION <partition_expr>`
     /// Note: this is a ClickHouse-specific operation, please refer to
-    /// 
[ClickHouse](https://clickhouse.com/docs/en/sql-reference/statements/alter/pakrtition#attach-partitionpart)
+    /// 
[ClickHouse](https://clickhouse.com/docs/en/sql-reference/statements/alter/partition#attach-partitionpart)
     AttachPartition {
         // PART is not a short form of PARTITION, it's a separate keyword
         // which represents a physical file on disk and partition is a logical 
entity.
diff --git a/src/ast/mod.rs b/src/ast/mod.rs
index e28c3739..7b401606 100644
--- a/src/ast/mod.rs
+++ b/src/ast/mod.rs
@@ -1144,7 +1144,7 @@ pub enum Expr {
     ///
     /// 
[ClickHouse](https://clickhouse.com/docs/en/sql-reference/functions#higher-order-functions---operator-and-lambdaparams-expr-function)
     /// 
[Databricks](https://docs.databricks.com/en/sql/language-manual/sql-ref-lambda-functions.html)
-    /// [DuckDb](https://duckdb.org/docs/sql/functions/lambda.html)
+    /// [DuckDB](https://duckdb.org/docs/stable/sql/functions/lambda)
     Lambda(LambdaFunction),
     /// Checks membership of a value in a JSON array
     MemberOf(MemberOf),
diff --git a/src/dialect/duckdb.rs b/src/dialect/duckdb.rs
index aee7ee93..37cf7d36 100644
--- a/src/dialect/duckdb.rs
+++ b/src/dialect/duckdb.rs
@@ -65,7 +65,7 @@ impl Dialect for DuckDbDialect {
         true
     }
 
-    /// See <https://duckdb.org/docs/sql/functions/lambda.html>
+    /// See <https://duckdb.org/docs/stable/sql/functions/lambda>
     fn supports_lambda_functions(&self) -> bool {
         true
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org
For additional commands, e-mail: commits-h...@datafusion.apache.org

Reply via email to