内容简介:PostgreSQL 11 beta 2 发布了,PostgreSQL (也叫 Postgres)是一个自由的对象-关系数据库服务器(数据库管理系统),它在灵活的 BSD-风格许可证下发行。它提供了相对其他开放源代码数据库系统(比如 MySQL 和 Fire...
PostgreSQL 11 beta 2 发布了,PostgreSQL (也叫 Postgres)是一个自由的对象-关系数据库服务器(数据库管理系统),它在灵活的 BSD-风格许可证下发行。它提供了相对其他开放源代码数据库系统(比如 MySQL 和 Firebird),和对专有系统比如 Oracle、Sybase、IBM 的 DB2 和 Microsoft SQL Server的一种选择。
此版本修复了众多 bug:
Several fixes for XML support, including using the document node as the context for XPath queries as defined in the SQL standard, which affects the
xpathandxpath_existsfunctions, as well as XMLTABLESeveral fixes related to VACUUM, including potential data corruption issues
Fixes for partitioning, including ensuring partitioning works with temporary tables, eliminating a needless additional partition constraint checks on
INSERTs and generating incorrect paths for partitionwise aggregatesFix for potential replica server crashes where a replica would attempt to read a recycled WAL segment
Fixes for
pg_replication_slot_advanceincluding returningNULLif slot is not advanced and changes for how the slot is updated depending on if it is a physical or logical replication slotEnsure
pg_resetwalworks with relative paths to data directoryFixes for query parallelism, including preventing a crash by ignoring "parallel append" for parallel unsafe paths in a query plan
Fix returning accurate results with
varianceand similar aggregate functions when executed using parallel queryFix issue where
COPY FROM .. WITH HEADERwould drop a line after every 4,294,967,296 lines processedEnsure the "B" (bytes) parameter is accepted by all memory-related configuration parameters
Several fixes for the JSONB transform in PL/Python and PL/Perl
Fix for plpgsql checking statements where it needs to check original write statement before rewrite, could cause crash
Fix for
SHOW ALLto display superuser configuration settings to roles that are allowed to read all settingsFix for
pg_upgradethat ensures defaults are written when using the "fast ALTER TABLE .. ADD COLUMN" feature with a non-NULL defaultSeveral fixes for memory leaks
Several fixes specific to the Windows platform
同时包含 tzdata 版本 2018e。
详情查看发布公告。
下载地址:https://www.postgresql.org/download/
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- fastjson 1.2.55 版本发布,Bug 修复版本
- Swoole v4.6.1 版本发布,Bug 修复版本
- Swoole v4.6.2 版本发布,Bug 修复版本
- Swoole v4.6.4 版本发布,Bug 修复版本
- Swoole v4.6.7 版本发布,Bug 修复版本
- fastjson 1.2.57 版本发布,Bug 修复维护版本
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
数据结构与算法经典问题解析
纳拉辛哈·卡鲁曼希 / 骆嘉伟 / 机械工业出版社 / 2016-6-1 / CNY 79.00
本书是一本数据结构方面的优秀教材,以Java为描述语言,介绍了计算机编程中使用的数据结构和算法。本书强调问题及其分析,而非理论阐述,共分为21章,讲述了基本概念、递归和回溯、链表、栈、队列、树、优先队列和堆、并查集DAT、图算法、排序、查找、选择算法(中位数)、符号表、散列、字符串算法、算法设计技术、贪婪算法、分治算法、动态规划算法、复杂度类型等内容。每章首先阐述必要的理论基础,然后给出问题集。全......一起来看看 《数据结构与算法经典问题解析》 这本书的介绍吧!