We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e60480f commit 2e42ae3Copy full SHA for 2e42ae3
src/main/java/org/mybatis/dynamic/sql/select/aggregate/AbstractAggregate.java
@@ -23,11 +23,15 @@
23
24
/**
25
* This class is the base class for aggregate functions.
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
30
* @author Jeff Butler
31
*
32
* @param <T> the subclass type
33
*/
34
+@Deprecated
35
public abstract class AbstractAggregate<T extends AbstractAggregate<T>> implements BasicColumn {
36
protected final BasicColumn column;
37
protected String alias;
0 commit comments