Skip to content

Commit

Permalink
align the impl of bool_and_append_only with bool_or_append_only
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <[email protected]>
  • Loading branch information
stdrc committed Nov 12, 2024
1 parent 956c03d commit 66c4ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/expr/impl/src/aggregate/bool_and.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 66c4ae3

Please sign in to comment.