Max Gekk created SPARK-51414:
--------------------------------

             Summary: Add the make_time() function
                 Key: SPARK-51414
                 URL: https://issues.apache.org/jira/browse/SPARK-51414
             Project: Spark
          Issue Type: Sub-task
          Components: SQL
    Affects Versions: 4.1.0
            Reporter: Max Gekk


The make_time() function creates a time from hour, min, and sec fields. 
h4. Syntax

{code:sql}
make_time(hour, min, sec)
{code}

h4. Arguments
# hour: An INTEGER expression evaluating to a value between 0 and 23.
# min: An INTEGER expression evaluating to a value between 0 and 59.
# sec: A numeric expression evaluating to a value between 0 and 59.

h4. Returns
A TIME.

h4. Examples

{code:sql}
> SELECT make_time(6, 30, 45.887);
 06:30:45.887
> SELECT make_time(NULL, 30, 0);
 NULL
{code}






--
This message was sent by Atlassian Jira
(v8.20.10#820010)

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

Reply via email to