From 330650c4f8724c08dc06f777c6b5ec2f9b264d5c Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes Date: Wed, 18 Jul 2018 15:52:59 -0300 Subject: [PATCH] Adjust CURRENT_TIME/CURRENT_TIMESTAMP docs. --- doc/sql.extensions/README.time_zone.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sql.extensions/README.time_zone.md b/doc/sql.extensions/README.time_zone.md index b8f32b5eb7..8f2f0b278a 100644 --- a/doc/sql.extensions/README.time_zone.md +++ b/doc/sql.extensions/README.time_zone.md @@ -247,7 +247,7 @@ select localtimestamp # Changes in `CURRENT_TIME` and `CURRENT_TIMESTAMP` -In version 4.0, `CURRENT_TIME` and `CURRENT_TIMESTAMP` are changed to return `TIME WITH TIME ZONE` and `TIMESTAMP WITH TIME ZONE`, different than previous versions, that returned the types without time zone. +In version 4.0, `CURRENT_TIME` and `CURRENT_TIMESTAMP` are changed to return `TIME WITH TIME ZONE` and `TIMESTAMP WITH TIME ZONE` (with time zone set to the session time zone), different than previous versions, that returned the types without time zone. To make transition easier, `LOCALTIME` and `LOCALTIMESTAMP` was added in v3.0.4, so applications can be adjusted in v3 and migrated to v4 without funcional changes.