Re: How to get correct local time

Поиск
Список
Период
Сортировка
От Vitaly Burovoy
Тема Re: How to get correct local time
Дата
Msg-id CAKOSWNkwQ1YwJGimMsJgZcUbgKab=sKj2nqrXt4r7nwszrkQ3A@mail.gmail.com
обсуждение исходный текст
Ответ на Converting char to varchar automatically  ("Andrus" <kobruleht2@hot.ee>)
Ответы Re: How to get correct local time  (Vitaly Burovoy <vitaly.burovoy@gmail.com>)
Список pgsql-general
On 3/29/17, Andrus <kobruleht2@hot.ee> wrote:
>
>     select current_time at time zone 'GMT-2'
>
> returns
>
> "11:54:40.22045+02"
>
> but correct local time in Windows is one hour different:
>
> 12:54
>
> How to get correct local time ?
>
>
> Using
>
> "PostgreSQL 9.6.0, compiled by Visual C++ build 1800, 32-bit"
>
> with  standard postgresql.conf file in Windows 10
> Same issue occurs also in ealier Postgres and in earlier windows.
>
> Server time in Windows is correct.
>
> Daylight saving time was changed by one hour a week ago.
> Maybe postgres didnt recognized it.
>
> Posted also in
>
> http://stackoverflow.com/questions/43090328/how-to-return-correct-local-time-in-postgres
>
> Andrus.
>

Try

SELECT now();

or

SELECT current_timestamp;

--
Best regards,
Vitaly Burovoy


В списке pgsql-general по дате отправления:

Предыдущее
От: "Andrus"
Дата:
Сообщение: How to get correct local time
Следующее
От: Vitaly Burovoy
Дата:
Сообщение: Re: How to get correct local time