This expression computes a max row according to the max column expression after applying the provided filter specification. If there is no maximum row, null will be returned.
Expression categories: Aggregate
Declared arguments
Expression - Column expression on which the max is computed. Null values are treated as if they have the smallest value. Expression<ComparableType>
Output projection expression - Defines the projection expression that is applied on the maximum row before it is returned. Expression<AnyType>
optionalFilter condition - This parameter defines the filter specification that is applied on the rows contained within the window. The output of this expression will only reference rows which are not filtered by this parameter (i.e., where the condition evaluates to true). If no rows exist in state at the time of a trigger, null will be emitted. Expression<Boolean>