From 1df0257bf881cfa865533b8f174a135179d35fc8 Mon Sep 17 00:00:00 2001 From: Ziyang Hu Date: Fri, 23 Dec 2022 17:07:08 +0800 Subject: [PATCH] smallest_by --- cozo-core/src/data/aggr.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cozo-core/src/data/aggr.rs b/cozo-core/src/data/aggr.rs index c79b119f..f4ed3631 100644 --- a/cozo-core/src/data/aggr.rs +++ b/cozo-core/src/data/aggr.rs @@ -1181,6 +1181,7 @@ pub(crate) fn parse_aggr(name: &str) -> Option<&'static Aggregation> { "bit_or" => &AGGR_BIT_OR, "bit_xor" => &AGGR_BIT_XOR, "latest_by" => &AGGR_LATEST_BY, + "smallest_by" => &AGGR_SMALLEST_BY, "choice_rand" => &AGGR_CHOICE_RAND, _ => return None, })