Skip to content

Commit 2e42ae3

Browse files
committed
Deprecate AbstractAggregate in favor or AbstractUniTypeFunction
1 parent e60480f commit 2e42ae3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main/java/org/mybatis/dynamic/sql/select/aggregate/AbstractAggregate.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,15 @@
2323

2424
/**
2525
* This class is the base class for aggregate functions.
26-
*
26+
*
27+
* @deprecated in favor of {@link org.mybatis.dynamic.sql.select.function.AbstractUniTypeFunction} as there is
28+
* virtually no difference between an aggregate and a function
29+
*
2730
* @author Jeff Butler
2831
*
2932
* @param <T> the subclass type
3033
*/
34+
@Deprecated
3135
public abstract class AbstractAggregate<T extends AbstractAggregate<T>> implements BasicColumn {
3236
protected final BasicColumn column;
3337
protected String alias;

0 commit comments

Comments
 (0)