alamb commented on code in PR #13293:
URL: https://github.com/apache/datafusion/pull/13293#discussion_r1832772687


##########
datafusion/common/src/stats.rs:
##########
@@ -31,6 +31,14 @@ pub enum Precision<T: Debug + Clone + PartialEq + Eq + 
PartialOrd> {
     Exact(T),
     /// The value is not known exactly, but is likely close to this value
     Inexact(T),
+    /// The value is know to be at most (inclusive) of this value.
+    ///
+    /// The actual value may be smaller, but it is never greater.
+    AtMost(T),

Review Comment:
   This is the main change -- adding these variants



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to