PostgreSQL版本日志及部分渣翻译(草稿)

PostgreSQL版本日志及部分渣翻译(草稿),第1张

概述版权声明:本文地址http://www.voidcn.com/article/p-wsluaypk-ms.html 欢迎非商业目的的转载, 作者保留一切权利 mysql被Oracle收购后, PostgreSQL成了开源数据库的老大. 最近PostgreSQL新版本发布频繁, 本文在官网日志基础上, 列出历次版本添版权声明:本文地址http://www.voidcn.com/article/p-w

版权声明:本文地址http://www.jb51.cc/article/p-wsluaypk-ms.html
欢迎非商业目的的转载,作者保留一切权利

MysqL被Oracle收购后,Postgresql成了开源数据库的老大. 最近Postgresql新版本发布频繁,本文在官网日志基础上,列出历次版本添版权声明:本文地址http://www.jb51.cc/article/p-wsluaypk-ms.html
欢迎非商业目的的转载,作者保留一切权利加的Postgresql的新功能

Version 96 Beta 1 - 2016-05-12 Major enhancements in PostgreSQL 96 include Version 953 - 2016-05-12 Version 9.6 Beta 1 - 2016-05-12 Major enhancements in Postgresql 9.6 include:
Parallel sequential scans,joins and aggregatesElimination of repetitive scanning of old data by autovacuumSynchronous replication Now allows multiple standby servers for increased reliabilityFull-text search for phrasesSupport for remote joins,sorts,and updates in postgres_fDWSubstantial performance improvements,especially in the area of improving scalability on many-cpu servers

The above items are explained in more detail in the sections below.
https://www.postgresql.org/docs/9.6/static/release-9-6.html

Version 9.5.3 - 2016-05-12

Clear the OpenSSL error queue before OpenSSL calls,rather than assuming it’s clear already; and make sure we leave it clear afterwards (Peter Geoghegan,Dave Vitek,Peter Eisentraut)

This change prevents problems when there are multiple connections using OpenSSL within a single process and not all the code involved follows the same rules for when to clear the error queue. Failures have been reported specifically when a clIEnt application uses SSL connections in libpq concurrently with SSL connections using the PHP,Python,or Ruby wrappers for OpenSSL. It’s possible for similar problems to arise within the server as well,if an extension module establishes an outgoing SSL connection.

Fix “Failed to build any N-way joins” planner error with a full join enclosed in the right-hand sIDe of a left join (Tom Lane)

Fix incorrect handling of equivalence-class tests in multilevel nestloop plans (Tom Lane)

Given a three-or-more-way equivalence class of variables,such as X.X = Y.Y = Z.Z,it was possible for the planner to omit some of the tests needed to enforce that all the variables are actually equal,leading to join rows being output that dIDn’t satisfy the WHERE clauses. For varIoUs reasons,erroneous plans were seldom selected in practice,so that this BUG has gone undetected for a long time.

Fix corner-case parser failures occurring when operator_precedence_warning is turned on (Tom Lane)

An example is that SELECT (ARRAY[])::text[] gave an error,though it worked without the parentheses.

Fix query-lifespan memory leak in GIN index scans (JulIEn Rouhaud)

Fix query-lifespan memory leak and potential index corruption hazard in GIN index insertion (Tom Lane)

The memory leak would typically not amount to much in simple querIEs,but it Could be very substantial during a large GIN index build with high maintenance_work_mem.

Fix possible misbehavior of TH,th,and Y,YYY format codes in to_timestamp() (Tom Lane)

These Could advance off the end of the input string,causing subsequent format codes to read garbage.

Fix dumPing of rules and vIEws in which the array argument of a value operator ANY (array) construct is a sub-SELECT (Tom Lane)

disallow newlines in ALTER SYstem parameter values (Tom Lane)

The configuration-file parser doesn’t support embedded newlines in string literals,so we mustn’t allow them in values to be inserted by ALTER SYstem.

Fix ALTER table … REPliCA IDENTITY USING INDEX to work properly if an index on OID is selected (DavID Rowley)

AvoID possible misbehavior after failing to remove a tablespace symlink (Tom Lane)

Fix crash in logical deCoding on alignment-picky platforms (Tom Lane,Andres Freund)

The failure occurred only with a transaction large enough to spill to disk and a primary-key change within that transaction.

AvoID repeated requests for Feedback from receiver while shutting down walsender (Nick Cleaton)

Make pg_regress use a startup timeout from the PGCTLTIMEOUT environment variable,if that’s set (Tom Lane)

This is for consistency with a behavior recently added to pg_ctl; it eases automated testing on slow machines.

Fix pg_upgrade to correctly restore extension membership for operator familIEs containing only one operator class (Tom Lane)

In such a case,the operator family was restored into the new database,but it was no longer marked as part of the extension. This had no immediate ill effects,but would cause later pg_dump runs to emit output that would cause (harmless) errors on restore.

Fix pg_upgrade to not fail when new-cluster TOAST rules differ from old (Tom Lane)

pg_upgrade had special-case code to handle the situation where the new Postgresql version thinks that a table should have a TOAST table while the old version dID not. That code was broken,so remove it,and instead do nothing in such cases; there seems no reason to belIEve that we can’t get along fine without a TOAST table if that was okay according to the old version’s rules.

Fix atomic operations for PPC when using IBM’s XLC compiler (Noah Misch)

Reduce the number of SysV semaphores used by a build configured with –disable-spinlocks (Tom Lane)

Rename internal function strtoi() to strtoint() to avoID conflict with a NetBSD library function (Thomas Munro)

Fix reporting of errors from bind() and Listen() system calls on windows (Tom Lane)

Reduce verbosity of compiler output when building with Microsoft Visual Studio (Christian ullrich)

Support building with Visual Studio 2015 (Michael PaquIEr,Petr Jelínek)

Note that builds made with VS2015 will not run on windows versions before windows Vista.

Fix putenv() to work properly with Visual Studio 2013 (Michael PaquIEr)

AvoID possibly-unsafe use of windows’ FormatMessage() function (Christian ullrich)

Use the FORMAT_MESSAGE_IGnorE_INSERTS flag where appropriate. No live BUG is kNown to exist here,but it seems like a good IDea to be careful.

Update time zone data files to tzdata release 2016d for DST law changes in Russia and Venezuela. There are new zone names Europe/Kirov and Asia/Tomsk to reflect the fact that these regions Now have different time zone historIEs from adjacent regions.

版权声明:本文地址http://www.jb51.cc/article/p-wsluaypk-ms.html 欢迎非商业目的的转载,作者保留一切权利

总结

以上是内存溢出为你收集整理的PostgreSQL版本日志及部分渣翻译(草稿)全部内容,希望文章能够帮你解决PostgreSQL版本日志及部分渣翻译(草稿)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1174318.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存