vinodkc commented on code in PR #50558: URL: https://github.com/apache/spark/pull/50558#discussion_r2042987370
########## sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/FunctionRegistry.scala: ########## @@ -650,6 +650,7 @@ object FunctionRegistry { expression[Now]("now"), expression[Quarter]("quarter"), expressionBuilder("second", SecondExpressionBuilder), + expression[SecondsOfTimeWithFraction]("secondoftime_with_fraction"), Review Comment: Removed the function registration ########## sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/timeExpressions.scala: ########## @@ -297,6 +312,49 @@ object HourExpressionBuilder extends ExpressionBuilder { } } +// scalastyle:off line.size.limit +@ExpressionDescription( + usage = """ + _FUNC_(time_expr) - Returns the second component with fraction of the given time. + """, + examples = """ + Examples: + > SELECT _FUNC_(TIME'23:59:59.999999'); + 59.999999 + """, + since = "4.1.0", + group = "datetime_funcs") +// scalastyle:on line.size.limit Review Comment: Done -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org