Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SPARK-51562][SQL] Add the time() function #50509

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

senthh
Copy link
Contributor

@senthh senthh commented Apr 3, 2025

What changes were proposed in this pull request?

This PR adds new function time() which should cast an expr to TIME. This function is a synonym for CAST(expr AS TIME)

Examples

SELECT time('12:25:13.45');
12:25:13.45
SELECT time(timestamp'2020-04-30 12:25:13.45');
12:25:13.45
SELECT time(123);
00:02:03

Why are the changes needed?

This function is a synonym for CAST(expr AS TIME)

Does this PR introduce any user-facing change?

No

How was this patch tested?

By running the related test suites:

$ build/sbt "test:testOnly *ExpressionInfoSuite"
$ build/sbt "test:testOnly *TimeExpressionsSuite"
$ build/sbt "sql/testOnly org.apache.spark.sql.SQLQueryTestSuite -- -z time.sql"

and also with spark-shell

scala> spark.sql("select time(123) as col").show()
+--------+
|     col|
+--------+
|00:02:03|
+--------+


scala> spark.sql("select time(timestamp'2020-04-30 00:25:13.45') as col").show()
+-----------+
|        col|
+-----------+
|00:25:13.45|
+-----------+


scala> spark.sql("select time('12:25:13.45') as col").show()
+-----------+
|        col|
+-----------+
|12:25:13.45|
+-----------+

Was this patch authored or co-authored using generative AI tooling?

No

@github-actions github-actions bot added the SQL label Apr 3, 2025
@senthh
Copy link
Contributor Author

senthh commented Apr 3, 2025

@MaxGekk Could you please review this new PR. I have mapped time() to CAST expression

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant