Release PostgreSQL 9.4
Major enhancements in PostgreSQL 9.4 include: Add jsonb, a more capable and efficient data type for storing JSON data Add new SQL command ALTER SYSTEM for changing postgresql.conf configuration file entries Reduce lock strength for some ALTER TABLE commands Allow materialized views to be refreshed without blocking concurrent reads Add support for logical decoding of WAL data, to allow database changes to be streamed out in a customizable format Allow background worker processes to be dynamically registered, started and terminated The above items are explained in more detail in the sections below. URL: http://www.postgresql.org/docs/9.4/static/release-9-4.html
This commit is contained in:
parent
f347ecaa81
commit
60b705aaf6
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=374908
@ -1,8 +1,7 @@
|
||||
# Created by: Marc G. Fournier <scrappy@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
DISTVERSION?= 9.4rc1
|
||||
PKGNAMESUFFIX?= ${DISTVERSION:S/.//:S/rc/./:R}${COMPONENT}
|
||||
DISTVERSION?= 9.4.0
|
||||
PORTREVISION= 0
|
||||
|
||||
MAINTAINER?= pgsql@FreeBSD.org
|
||||
|
@ -1,4 +1,4 @@
|
||||
SHA256 (postgresql/postgresql-9.4rc1.tar.bz2) = 6ce91d78fd6c306536f5734dbaca10889814b9d0fe0b38a41b3e635d95241c7c
|
||||
SIZE (postgresql/postgresql-9.4rc1.tar.bz2) = 17420690
|
||||
SHA256 (postgresql/postgresql-9.4.0.tar.bz2) = 7a35c3cb77532f7b15702e474d7ef02f0f419527ee80a4ca6036fffb551625a5
|
||||
SIZE (postgresql/postgresql-9.4.0.tar.bz2) = 17344910
|
||||
SHA256 (postgresql/pg-940-icu-2014-06-09.diff.gz) = 83de4b99c37aec1ad741c686cb2ea7f4bccff516c357ae71032b2d1f8da0d1c1
|
||||
SIZE (postgresql/pg-940-icu-2014-06-09.diff.gz) = 4259
|
||||
|
@ -926,6 +926,7 @@ man/man7/WITH.7.gz
|
||||
%%GETTEXT%%share/locale/ru/LC_MESSAGES/pgscripts-9.4.mo
|
||||
%%GETTEXT%%share/locale/ru/LC_MESSAGES/psql-9.4.mo
|
||||
%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_config-9.4.mo
|
||||
%%GETTEXT%%share/locale/sv/LC_MESSAGES/pgscripts-9.4.mo
|
||||
%%GETTEXT%%share/locale/ta/LC_MESSAGES/pg_config-9.4.mo
|
||||
%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpg-9.4.mo
|
||||
%%GETTEXT%%share/locale/tr/LC_MESSAGES/ecpglib6-9.4.mo
|
||||
|
@ -55,7 +55,6 @@ lib/libpgcommon.a
|
||||
%%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql
|
||||
%%DATADIR%%/extension/plpgsql.control
|
||||
%%GETTEXT%%share/locale/cs/LC_MESSAGES/initdb-9.4.mo
|
||||
%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.4.mo
|
||||
%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_controldata-9.4.mo
|
||||
%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_ctl-9.4.mo
|
||||
%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.4.mo
|
||||
@ -89,7 +88,6 @@ lib/libpgcommon.a
|
||||
%%GETTEXT%%share/locale/it/LC_MESSAGES/plpgsql-9.4.mo
|
||||
%%GETTEXT%%share/locale/it/LC_MESSAGES/postgres-9.4.mo
|
||||
%%GETTEXT%%share/locale/ja/LC_MESSAGES/initdb-9.4.mo
|
||||
%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_basebackup-9.4.mo
|
||||
%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_controldata-9.4.mo
|
||||
%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_ctl-9.4.mo
|
||||
%%GETTEXT%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.4.mo
|
||||
@ -117,8 +115,10 @@ lib/libpgcommon.a
|
||||
%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.4.mo
|
||||
%%GETTEXT%%share/locale/ru/LC_MESSAGES/plpgsql-9.4.mo
|
||||
%%GETTEXT%%share/locale/ru/LC_MESSAGES/postgres-9.4.mo
|
||||
%%GETTEXT%%share/locale/sv/LC_MESSAGES/initdb-9.4.mo
|
||||
%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_controldata-9.4.mo
|
||||
%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_ctl-9.4.mo
|
||||
%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/initdb-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.4.mo
|
||||
@ -126,9 +126,7 @@ lib/libpgcommon.a
|
||||
%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/postgres-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_ctl-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.4.mo
|
||||
%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/postgres-9.4.mo
|
||||
%%DATADIR%%/postgres.shdescription
|
||||
%%DATADIR%%/snowball_create.sql
|
||||
%%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan
|
||||
|
Loading…
Reference in New Issue
Block a user