diff --git a/docs/src/main/sphinx/functions/datetime.rst b/docs/src/main/sphinx/functions/datetime.rst index bbb693e2c528..27eb678a83fc 100644 --- a/docs/src/main/sphinx/functions/datetime.rst +++ b/docs/src/main/sphinx/functions/datetime.rst @@ -152,16 +152,16 @@ Date and time functions number of nanoseconds since ``1970-01-01 00:00:00.000000000 UTC``:: SELECT from_unixtime_nanos(100); - -- 1970-01-01 00:00:00.000000100 + -- 1970-01-01 00:00:00.000000100 UTC SELECT from_unixtime_nanos(DECIMAL '1234'); - -- 1970-01-01 00:00:00.000001234 + -- 1970-01-01 00:00:00.000001234 UTC SELECT from_unixtime_nanos(DECIMAL '1234.499'); - -- 1970-01-01 00:00:00.000001234 + -- 1970-01-01 00:00:00.000001234 UTC SELECT from_unixtime_nanos(DECIMAL '-1234'); - -- 1969-12-31 23:59:59.999998766 + -- 1969-12-31 23:59:59.999998766 UTC .. data:: localtime