Annotation Interface CountOverFullWindow


@Target(TYPE) @Retention(RUNTIME) @Inherited public @interface CountOverFullWindow
Annotation to be used at class level on a specification executed by CustomizedJpaSpecificationExecutorImpl to count all the results over the full window when there is a group by clause in the query, overriding the default behavior which counts the cardinality of the groups. From an SQL perspective, this means that 'count (*) over()' is used instead of 'count (*)'.
See Also: