mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-30 11:43:45 +00:00
fix: update DuckDB and ClickHouse documentation links (#1978)
Some checks failed
Rust / benchmark-lint (push) Has been cancelled
Rust / docs (push) Has been cancelled
license / Release Audit Tool (RAT) (push) Has been cancelled
Rust / codestyle (push) Has been cancelled
Rust / lint (push) Has been cancelled
Rust / compile (push) Has been cancelled
Rust / compile-no-std (push) Has been cancelled
Rust / test (beta) (push) Has been cancelled
Rust / test (nightly) (push) Has been cancelled
Rust / test (stable) (push) Has been cancelled
Some checks failed
Rust / benchmark-lint (push) Has been cancelled
Rust / docs (push) Has been cancelled
license / Release Audit Tool (RAT) (push) Has been cancelled
Rust / codestyle (push) Has been cancelled
Rust / lint (push) Has been cancelled
Rust / compile (push) Has been cancelled
Rust / compile-no-std (push) Has been cancelled
Rust / test (beta) (push) Has been cancelled
Rust / test (nightly) (push) Has been cancelled
Rust / test (stable) (push) Has been cancelled
This commit is contained in:
parent
865c191a53
commit
5ec953bd78
3 changed files with 3 additions and 3 deletions
|
@ -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.
|
||||
|
|
|
@ -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),
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue