This is an automated email from the ASF dual-hosted git repository. charlie pushed a commit to branch count_min_family_id in repository https://gitbox.apache.org/repos/asf/datasketches-java.git
commit 53e5a46cd7b466ffefc0dc709f63770bcd63e4cf Author: charlied <[email protected]> AuthorDate: Mon Apr 17 08:28:10 2023 +0100 Reserving count min family id --- src/main/java/org/apache/datasketches/common/Family.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/datasketches/common/Family.java b/src/main/java/org/apache/datasketches/common/Family.java index cfa3e86b..cdfeaa93 100644 --- a/src/main/java/org/apache/datasketches/common/Family.java +++ b/src/main/java/org/apache/datasketches/common/Family.java @@ -140,7 +140,12 @@ public enum Family { /** * Relative Error Quantiles Sketch */ - REQ(17, "REQ", 1, 2); + REQ(17, "REQ", 1, 2), + + /** + * CountMin Sketch + */ + COUNTMIN(18, "COUNTMIN", 2, 2); private static final Map<Integer, Family> lookupID = new HashMap<>(); private static final Map<String, Family> lookupFamName = new HashMap<>(); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
