what is impact on Postgresql databases? Jobs ,date columns datas will be affected?
相关问题
- Django distinct is not working
- PostgreSQL: left outer join syntax
- Connecting Python to a Heroku PostgreSQL DB?
- Display time in local timezone when querying Influ
- PostgreSQL - Deleting data that are older than an
相关文章
- postgresql 关于使用between and 中是字符串的问题
- postgresql 月份差计算问题
- Using boolean expression in order by clause
- Table valued Parameter Equivalent in Postgresql
- in redshift postgresql can I skip columns with the
- Oracle equivalent of PostgreSQL INSERT…RETURNING *
- PostgreSQL field data type for IPv4 addresses
- Using prepared statement in stored function
As soon as this change hits the IANA timezone library, it will be included in PostgreSQL with the next minor release. This has happened with commit a03339aef2, so the change will be in 9.6.1, 9.5.5, 9.4.10, 9.3.15, 9.2.19 and 9.1.24.
Data of type
timestamp with time zone
will not be affected, as they are stored in UTC internally. If your client time zone is set toTurkey
or equivalent, the data will be displayed with the (new) correct time zone offset.Data of type
timestamp without time zone
will stay the same, so they will not be automatically shifted to the new time zone offset upon display. But it's almost always a mistake to use that data type anyway.postgresql uses the zoneinfo database for time zone computations. The database's 2016g version which was released 2 weeks ago, includes an update to handle the situation for Turkey correctly. For now, you'll have to wait for the postgresql developers to pull the latest version of zoneinfo into postgresql and then release a new version. You can check what postgres thinks for Turkey's timezone as follows:
As you can see, on my system (postgresql 9.5.4), it still thinks that Turkey will switch to +2 offset in the winter.