diff --git a/src/expr/impl/src/aggregate/bool_and.rs b/src/expr/impl/src/aggregate/bool_and.rs index d1a007eb47582..94d6834e904dd 100644 --- a/src/expr/impl/src/aggregate/bool_and.rs +++ b/src/expr/impl/src/aggregate/bool_and.rs @@ -48,7 +48,7 @@ use risingwave_expr::aggregate; /// statement ok /// drop table t; /// ``` -#[aggregate("bool_and(boolean) -> boolean", state = "ref")] +#[aggregate("bool_and(boolean) -> boolean")] fn bool_and_append_only(state: bool, input: bool) -> bool { state && input }