From d2676f340f7ef9bb13dbd3c901ddb471eecc5bbd Mon Sep 17 00:00:00 2001 From: zhli1142015 Date: Wed, 22 May 2024 09:59:40 +0800 Subject: [PATCH] address comments --- velox/docs/functions/spark/aggregate.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/velox/docs/functions/spark/aggregate.rst b/velox/docs/functions/spark/aggregate.rst index ef671af73a46..b9112400ac6d 100644 --- a/velox/docs/functions/spark/aggregate.rst +++ b/velox/docs/functions/spark/aggregate.rst @@ -83,6 +83,8 @@ General Aggregate Functions .. spark:function:: max(x) -> [same as x] Returns the maximum value of `x`. + Note: In Spark, the timestamp type represents a time instant in microsecond + precision. .. spark:function:: max_by(x, y) -> [same as x] @@ -104,6 +106,8 @@ General Aggregate Functions .. spark:function:: min(x) -> [same as x] Returns the minimum value of `x`. + Note: In Spark, the timestamp type represents a time instant in microsecond + precision. .. spark:function:: min_by(x, y) -> [same as x]