diff --git a/docs/sql/functions/time.md b/docs/sql/functions/time.md index a4bca861dc4..862c8bdef79 100644 --- a/docs/sql/functions/time.md +++ b/docs/sql/functions/time.md @@ -24,7 +24,7 @@ The table below shows the available scalar functions for `TIME` types. | Name | Description | |:--|:-------| -| [`current_time`](#current_time) | Current time (start of current transaction). | +| [`current_time`](#current_time) | Current time (start of current transaction) in UTC. | | [`date_diff(part, starttime, endtime)`](#date_diffpart-starttime-endtime) | The number of [partition]({% link docs/sql/functions/datepart.md %}) boundaries between the times. | | [`date_part(part, time)`](#date_partpart-time) | Get [subfield]({% link docs/sql/functions/datepart.md %}) (equivalent to `extract`). | | [`date_sub(part, starttime, endtime)`](#date_subpart-starttime-endtime) | The number of complete [partitions]({% link docs/sql/functions/datepart.md %}) between the times. | @@ -32,7 +32,7 @@ The table below shows the available scalar functions for `TIME` types. | [`datepart(part, time)`](#datepartpart-time) | Alias of date_part. Get [subfield]({% link docs/sql/functions/datepart.md %}) (equivalent to `extract`). | | [`datesub(part, starttime, endtime)`](#datesubpart-starttime-endtime) | Alias of date_sub. The number of complete [partitions]({% link docs/sql/functions/datepart.md %}) between the times. | | [`extract(part FROM time)`](#extractpart-from-time) | Get subfield from a time. | -| [`get_current_time()`](#get_current_time) | Current time (start of current transaction). | +| [`get_current_time()`](#get_current_time) | Current time (start of current transaction) in UTC. | | [`make_time(bigint, bigint, double)`](#make_timebigint-bigint-double) | The time for the given parts. | The only [date parts]({% link docs/sql/functions/datepart.md %}) that are defined for times are `epoch`, `hours`, `minutes`, `seconds`, `milliseconds` and `microseconds`. @@ -41,7 +41,7 @@ The only [date parts]({% link docs/sql/functions/datepart.md %}) that are define
-| **Description** | Current time (start of current transaction). Note that parentheses should be omitted. | +| **Description** | Current time (start of current transaction) in UTC. Note that parentheses should be omitted. | | **Example** | `current_time` | | **Result** | `10:31:58.578` | | **Alias** | `get_current_time()` | @@ -106,7 +106,7 @@ The only [date parts]({% link docs/sql/functions/datepart.md %}) that are define -| **Description** | Current time (start of current transaction). | +| **Description** | Current time (start of current transaction) in UTC. | | **Example** | `get_current_time()` | | **Result** | `10:31:58.578` | | **Alias** | `current_time` |