From 704fa97b27f7a6d1ca94aefb3868370a7a5bc64a Mon Sep 17 00:00:00 2001 From: Yoav Cohen Date: Tue, 8 Oct 2024 18:39:50 +0200 Subject: [PATCH] Improve docs --- src/ast/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ast/mod.rs b/src/ast/mod.rs index 920682ff8..989be2880 100644 --- a/src/ast/mod.rs +++ b/src/ast/mod.rs @@ -646,16 +646,16 @@ pub enum Expr { regexp: bool, }, /// `ANY` operation e.g. `foo > ANY(bar)`, comparison operator is one of `[=, >, <, =>, =<, !=]` - /// https://jakewheat.github.io/sql-overview/sql-2016-foundation-grammar.html#_8_9_quantified_comparison_predicate + /// https://docs.snowflake.com/en/sql-reference/operators-subquery#all-any AnyOp { left: Box, compare_op: BinaryOperator, right: Box, - // ANY and SOME are synonymous + // ANY and SOME are synonymous: https://docs.cloudera.com/cdw-runtime/cloud/using-hiveql/topics/hive_comparison_predicates.html is_some: bool, }, /// `ALL` operation e.g. `foo > ALL(bar)`, comparison operator is one of `[=, >, <, =>, =<, !=]` - /// https://jakewheat.github.io/sql-overview/sql-2016-foundation-grammar.html#_8_9_quantified_comparison_predicate + /// https://docs.snowflake.com/en/sql-reference/operators-subquery#all-any AllOp { left: Box, compare_op: BinaryOperator,