chore: fix some comments (#1184)

Signed-off-by: sunxunle <sunxunle@gmail.com>
This commit is contained in:
sunxunle 2024-04-07 01:06:53 +08:00 committed by GitHub
parent 2bf93a470c
commit e976a2ee43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View file

@ -4649,7 +4649,7 @@ pub struct Function {
pub args: Vec<FunctionArg>,
/// e.g. `x > 5` in `COUNT(x) FILTER (WHERE x > 5)`
pub filter: Option<Box<Expr>>,
// Snowflake/MSSQL supports diffrent options for null treatment in rank functions
// Snowflake/MSSQL supports different options for null treatment in rank functions
pub null_treatment: Option<NullTreatment>,
pub over: Option<WindowType>,
// aggregate functions may specify eg `COUNT(DISTINCT x)`