Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Oct 2018 21:32:08 +0000 (UTC)
From:      Palle Girgensohn <girgen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r482456 - in head: Mk/Uses databases databases/postgresql11-client databases/postgresql11-contrib databases/postgresql11-docs databases/postgresql11-pgtcl databases/postgresql11-plperl ...
Message-ID:  <201810192132.w9JLW8dZ077643@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: girgen
Date: Fri Oct 19 21:32:08 2018
New Revision: 482456
URL: https://svnweb.freebsd.org/changeset/ports/482456

Log:
  The PostgreSQL Global Development Group today announced the release of
  PostgreSQL 11, the latest version of the world’s most advanced open
  source database.
  
  PostgreSQL 11 provides users with improvements to overall performance of
  the database system, with specific enhancements associated with very
  large databases and high computational workloads. Further, PostgreSQL 11
  makes significant improvements to the table partitioning system, adds
  support for stored procedures capable of transaction management,
  improves query parallelism and adds parallelized data definition
  capabilities, and introduces just-in-time (JIT) compilation for
  accelerating the execution of expressions in queries.
  
  "For PostgreSQL 11, our development community focused on adding features
  that improve PostgreSQL's ability to manage very large databases," said
  Bruce Momjian, a core team member of the PostgreSQL Global Development
  Group. "On top of PostgreSQL's proven performance for transactional
  workloads, PostgreSQL 11 makes it even easier for developers to run big
  data applications at scale."
  
  PostgreSQL benefits from over 20 years of open source development and
  has become the preferred open source relational database for developers.
  The project continues to receive recognition across the industry, and
  has been featured as the "DBMS of the Year 2017" by DB-Engines and in
  the SD Times 2018 100.
  
  PostgreSQL 11 is the first major release since PostgreSQL 10 was
  released on October 5, 2017. The next update release for PostgreSQL 11
  containing bug fixes will be PostgreSQL 11.1, and the next major release
  with new features will be PostgreSQL 12.
  
  Release Notes: https://www.postgresql.org/docs/11/static/release-11.html

Added:
  head/databases/postgresql11-client/
     - copied from r482357, head/databases/postgresql10-client/
  head/databases/postgresql11-contrib/
     - copied from r482357, head/databases/postgresql10-contrib/
  head/databases/postgresql11-docs/
     - copied from r482357, head/databases/postgresql10-docs/
  head/databases/postgresql11-pgtcl/
     - copied from r482357, head/databases/postgresql10-pgtcl/
  head/databases/postgresql11-plperl/
     - copied from r482357, head/databases/postgresql10-plperl/
  head/databases/postgresql11-plpython/
     - copied from r482357, head/databases/postgresql10-plpython/
  head/databases/postgresql11-pltcl/
     - copied from r482357, head/databases/postgresql10-pltcl/
  head/databases/postgresql11-server/
     - copied from r482357, head/databases/postgresql10-server/
Modified:
  head/Mk/Uses/pgsql.mk
  head/databases/Makefile
  head/databases/postgresql11-client/Makefile
  head/databases/postgresql11-contrib/Makefile
  head/databases/postgresql11-docs/Makefile
  head/databases/postgresql11-pgtcl/Makefile
  head/databases/postgresql11-plperl/Makefile
  head/databases/postgresql11-plpython/Makefile
  head/databases/postgresql11-pltcl/Makefile
  head/databases/postgresql11-server/Makefile
  head/databases/postgresql11-server/distinfo
  head/databases/postgresql11-server/files/patch-doc-src-sgml-Makefile
  head/databases/postgresql11-server/files/patch-src-backend-Makefile
  head/databases/postgresql11-server/pkg-plist-client
  head/databases/postgresql11-server/pkg-plist-contrib
  head/databases/postgresql11-server/pkg-plist-plperl
  head/databases/postgresql11-server/pkg-plist-plpython
  head/databases/postgresql11-server/pkg-plist-server

Modified: head/Mk/Uses/pgsql.mk
==============================================================================
--- head/Mk/Uses/pgsql.mk	Fri Oct 19 20:35:00 2018	(r482455)
+++ head/Mk/Uses/pgsql.mk	Fri Oct 19 21:32:08 2018	(r482456)
@@ -33,7 +33,7 @@ _INCLUDE_USES_PGSQL_MK=	yes
 
 # When adding a version, please keep the comment in
 # Mk/bsd.default-versions.mk in sync.
-VALID_PGSQL_VER=	9.3 9.4 9.5 9.6 10
+VALID_PGSQL_VER=	9.3 9.4 9.5 9.6 10 11
 
 # Override non-default LIBVERS like this:
 #PGSQL99_LIBVER=6

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Fri Oct 19 20:35:00 2018	(r482455)
+++ head/databases/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -725,6 +725,14 @@
     SUBDIR += postgresql-repmgr
     SUBDIR += postgresql-tds_fdw
     SUBDIR += postgresql-zhparser
+    SUBDIR += postgresql11-client
+    SUBDIR += postgresql11-contrib
+    SUBDIR += postgresql11-docs
+    SUBDIR += postgresql11-pgtcl
+    SUBDIR += postgresql11-plperl
+    SUBDIR += postgresql11-plpython
+    SUBDIR += postgresql11-pltcl
+    SUBDIR += postgresql11-server
     SUBDIR += postgresql10-client
     SUBDIR += postgresql10-contrib
     SUBDIR += postgresql10-docs

Modified: head/databases/postgresql11-client/Makefile
==============================================================================
--- head/databases/postgresql10-client/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-client/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -6,7 +6,7 @@ PORTREVISION=	0
 
 COMMENT=	PostgreSQL database (client)
 
-MASTERDIR=	${.CURDIR}/../postgresql10-server
+MASTERDIR=	${.CURDIR}/../postgresql11-server
 
 BUILD_DIRS=	config src/include src/interfaces src/port \
 		src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \

Modified: head/databases/postgresql11-contrib/Makefile
==============================================================================
--- head/databases/postgresql10-contrib/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-contrib/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -11,9 +11,9 @@ COMMENT=	The contrib utilities from the PostgreSQL dis
 LIB_DEPENDS=	libxslt.so:textproc/libxslt \
 		libxml2.so:textproc/libxml2
 
-MASTERDIR=	${.CURDIR}/../postgresql10-server
+MASTERDIR=	${.CURDIR}/../postgresql11-server
 
-USES=		bison pgsql:10
+USES=		bison pgsql:11
 
 BUILD_DIRS=	src/port src/include src/common contrib
 INSTALL_DIRS=	contrib

Modified: head/databases/postgresql11-docs/Makefile
==============================================================================
--- head/databases/postgresql10-docs/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-docs/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,6 +1,6 @@
 # Created by: Palle Girgensohn <girgen@pingpong.net>
 # $FreeBSD$
 
-WANT_PGSQL_VER=10
+WANT_PGSQL_VER=11
 
 .include "${.CURDIR}/../postgresql96-docs/Makefile"

Modified: head/databases/postgresql11-pgtcl/Makefile
==============================================================================
--- head/databases/postgresql10-pgtcl/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-pgtcl/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,10 +1,10 @@
 # $FreeBSD$
 
-PKGNAMESUFFIX=	-postgresql10
+PKGNAMESUFFIX=	-postgresql11
 
-CONFLICTS=	pgtcl-[0-9]* pgtcl-postgresql9[0123456]-[0-9]*
+CONFLICTS=	pgtcl-[0-9]* pgtcl-postgresql9[0123456]-[0-9]* pgtcl-postgresql10-*
 
-PGTCL_SLAVE=	10
+PGTCL_SLAVE=	11
 MASTERDIR=	${.CURDIR}/../pgtcl
 
 .include "${MASTERDIR}/Makefile"

Modified: head/databases/postgresql11-plperl/Makefile
==============================================================================
--- head/databases/postgresql10-plperl/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-plperl/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,6 +1,6 @@
 # Created by: Palle Girgensohn <girgen@partitur.se>
 # $FreeBSD$
 
-WANT_PGSQL_VER=	10
+WANT_PGSQL_VER=	11
 
 .include "${.CURDIR}/../postgresql95-plperl/Makefile"

Modified: head/databases/postgresql11-plpython/Makefile
==============================================================================
--- head/databases/postgresql10-plpython/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-plpython/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,5 +1,5 @@
 # $FreeBSD$
 
-WANT_PGSQL_VER=	10
+WANT_PGSQL_VER=	11
 
 .include "${.CURDIR}/../postgresql95-plpython/Makefile"

Modified: head/databases/postgresql11-pltcl/Makefile
==============================================================================
--- head/databases/postgresql10-pltcl/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-pltcl/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,6 +1,6 @@
 # Created by: Palle Girgensohn <girgen@partitur.se>
 # $FreeBSD$
 
-WANT_PGSQL_VER=	10
+WANT_PGSQL_VER=	11
 
 .include "${.CURDIR}/../postgresql96-pltcl/Makefile"

Modified: head/databases/postgresql11-server/Makefile
==============================================================================
--- head/databases/postgresql10-server/Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME?=	postgresql
-DISTVERSION?=	10.5
+DISTVERSION?=	11.0
 CATEGORIES?=	databases
 MASTER_SITES=	PGSQL/source/v${DISTVERSION}
 PKGNAMESUFFIX?= ${PORTVERSION:R}${COMPONENT}
@@ -12,10 +12,10 @@ COMMENT?=	PostgreSQL is the most advanced open-source 
 
 LICENSE=	PostgreSQL
 
-.if ${DISTVERSION:C/([0-9]*).*/\1/} == 10
-CONFLICTS+=	${PORTNAME}9*
+.if ${DISTVERSION:C/([0-9]*).*/\1/} >= 10
+CONFLICTS+=	${PORTNAME}9* ${PORTNAME}1[^${PORTVERSION:R:C/.*([0-9]$)/\\1/}]*
 .else
-CONFLICTS+=	${PORTNAME}9[^${PORTVERSION:R:E}]* ${PORTNAME}10*
+CONFLICTS+=	${PORTNAME}9[^${PORTVERSION:R:E}]* ${PORTNAME}1[0-9]*
 .endif
 
 WRKSRC=		${WRKDIR}/postgresql-${DISTVERSION}
@@ -43,6 +43,7 @@ CONFIGURE_ENV+=	INCLUDES="${INCLUDES}" \
 		PTHREAD_LIBS="-lpthread" \
 		LDFLAGS_SL="${LDFLAGS_SL}"
 LDFLAGS+=	-lpthread
+MAKE_ENV=	MAKELEVEL=0
 
 PLIST=		${PKGDIR}/pkg-plist${COMPONENT}
 
@@ -75,7 +76,7 @@ OPTIONS_DEFINE+=LIBEDIT DOCS
 LIBEDIT_DESC=	Use non-GPL libedit instead of readline
 USES+=		perl5
 .else
-MAKE_ENV=	PATH=${PREFIX}/bin:${PATH}
+MAKE_ENV+=	PATH=${PREFIX}/bin:${PATH}
 CONFIGURE_ENV+=	PATH=${PREFIX}/bin:${PATH}
 .endif
 
@@ -86,7 +87,7 @@ DTRACE_DESC=	Build with DTrace probes
 TZDATA_DESC=	Use internal timezone database
 XML_DESC=	Build with XML data type
 
-.if ${DISTVERSION:C/([0-9]*).*/\1/} != 10
+.if ${DISTVERSION:C/([0-9]*).*/\1/} < 10
 # See http://people.freebsd.org/~girgen/postgresql-icu/README.html for more info
 OPTIONS_DEFINE+=	ICU
 ICU_DESC=	Use ICU for unicode collation
@@ -160,8 +161,12 @@ SUB_LIST+=	PG_GROUP=${PG_GROUP} \
 
 .include <bsd.port.options.mk>
 
+.if ${ARCH} == "i386"
+CFLAGS+=	-msse2
+.endif
+
 .if !defined(SLAVE_ONLY)
-.if ${DISTVERSION:C/([0-9]*).*/\1/} != 10
+.if ${DISTVERSION:C/([0-9]*).*/\1/} < 10
 .  if ( defined(SERVER_ONLY) && ${PORT_OPTIONS:MICU} ) || make(makesum)
 USES+=		autoreconf
 CONFIGURE_ARGS+=--with-icu

Modified: head/databases/postgresql11-server/distinfo
==============================================================================
--- head/databases/postgresql10-server/distinfo	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/distinfo	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1533847537
-SHA256 (postgresql/postgresql-10.5.tar.bz2) = 6c8e616c91a45142b85c0aeb1f29ebba4a361309e86469e0fb4617b6a73c4011
-SIZE (postgresql/postgresql-10.5.tar.bz2) = 20284578
+TIMESTAMP = 1539894231
+SHA256 (postgresql/postgresql-11.0.tar.bz2) = bf9bba03d0c3902c188af12e454b35343c4a9bf9e377ec2fe50132efb44ef36b
+SIZE (postgresql/postgresql-11.0.tar.bz2) = 21206820

Modified: head/databases/postgresql11-server/files/patch-doc-src-sgml-Makefile
==============================================================================
--- head/databases/postgresql10-server/files/patch-doc-src-sgml-Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/files/patch-doc-src-sgml-Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,5 +1,5 @@
---- doc/src/sgml/Makefile.orig	2017-08-07 23:08:19.000000000 +0200
-+++ doc/src/sgml/Makefile	2017-08-08 14:07:11.461380000 +0200
+--- doc/src/sgml/Makefile.orig	2018-10-15 23:12:02.000000000 +0200
++++ doc/src/sgml/Makefile	2018-10-18 22:34:13.656029000 +0200
 @@ -15,7 +15,7 @@
  
  # Make "html" the default target, since that is what most people tend
@@ -7,9 +7,9 @@
 -html:
 +man:
  
- NO_TEMP_INSTALL=yes
- 
-@@ -24,7 +24,7 @@
+ # We don't need the tree-wide headers or install support here.
+ NO_GENERATED_HEADERS=yes
+@@ -26,7 +26,7 @@
  include $(top_builddir)/src/Makefile.global
  
  
@@ -18,16 +18,15 @@
  
  distprep: html distprep-man
  
-@@ -76,8 +76,6 @@
+@@ -62,7 +62,6 @@
  ## Man pages
  ##
  
 -man distprep-man: man-stamp
--
- man-stamp: stylesheet-man.xsl postgres.xml
- 	$(XMLLINT) --noout --valid postgres.xml
- 	$(XSLTPROC) $(XSLTPROCFLAGS) $(XSLTPROC_MAN_FLAGS) $^
-@@ -245,10 +243,10 @@
+ 
+ man-stamp: stylesheet-man.xsl postgres.sgml $(ALLSGML)
+ 	$(XMLLINT) $(XMLINCLUDE) --noout --valid $(word 2,$^)
+@@ -212,10 +211,10 @@
  ## Install
  ##
  

Modified: head/databases/postgresql11-server/files/patch-src-backend-Makefile
==============================================================================
--- head/databases/postgresql10-server/files/patch-src-backend-Makefile	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/files/patch-src-backend-Makefile	Fri Oct 19 21:32:08 2018	(r482456)
@@ -4,7 +4,7 @@
  # Update the commonly used headers before building the subdirectories
  $(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h
  
-+symlinks: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/fmgrprotos.h $(top_builddir)/src/include/utils/probes.h $(top_builddir)/src/include/storage/lwlocknames.h
++symlinks: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/storage/lwlocknames.h
 +
  
  # The postgres.o target is needed by the rule in Makefile.global that

Modified: head/databases/postgresql11-server/pkg-plist-client
==============================================================================
--- head/databases/postgresql10-server/pkg-plist-client	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/pkg-plist-client	Fri Oct 19 21:32:08 2018	(r482456)
@@ -84,6 +84,7 @@ include/postgresql/server/access/rewriteheap.h
 include/postgresql/server/access/rmgr.h
 include/postgresql/server/access/rmgrlist.h
 include/postgresql/server/access/sdir.h
+include/postgresql/server/access/session.h
 include/postgresql/server/access/skey.h
 include/postgresql/server/access/slru.h
 include/postgresql/server/access/spgist.h
@@ -97,6 +98,7 @@ include/postgresql/server/access/transam.h
 include/postgresql/server/access/tsmapi.h
 include/postgresql/server/access/tupconvert.h
 include/postgresql/server/access/tupdesc.h
+include/postgresql/server/access/tupdesc_details.h
 include/postgresql/server/access/tupmacs.h
 include/postgresql/server/access/tuptoaster.h
 include/postgresql/server/access/twophase.h
@@ -127,75 +129,130 @@ include/postgresql/server/catalog/objectaddress.h
 include/postgresql/server/catalog/opfam_internal.h
 include/postgresql/server/catalog/partition.h
 include/postgresql/server/catalog/pg_aggregate.h
+include/postgresql/server/catalog/pg_aggregate_d.h
 include/postgresql/server/catalog/pg_am.h
+include/postgresql/server/catalog/pg_am_d.h
 include/postgresql/server/catalog/pg_amop.h
+include/postgresql/server/catalog/pg_amop_d.h
 include/postgresql/server/catalog/pg_amproc.h
+include/postgresql/server/catalog/pg_amproc_d.h
 include/postgresql/server/catalog/pg_attrdef.h
+include/postgresql/server/catalog/pg_attrdef_d.h
 include/postgresql/server/catalog/pg_attribute.h
+include/postgresql/server/catalog/pg_attribute_d.h
 include/postgresql/server/catalog/pg_auth_members.h
+include/postgresql/server/catalog/pg_auth_members_d.h
 include/postgresql/server/catalog/pg_authid.h
+include/postgresql/server/catalog/pg_authid_d.h
 include/postgresql/server/catalog/pg_cast.h
+include/postgresql/server/catalog/pg_cast_d.h
 include/postgresql/server/catalog/pg_class.h
+include/postgresql/server/catalog/pg_class_d.h
 include/postgresql/server/catalog/pg_collation.h
-include/postgresql/server/catalog/pg_collation_fn.h
+include/postgresql/server/catalog/pg_collation_d.h
 include/postgresql/server/catalog/pg_constraint.h
-include/postgresql/server/catalog/pg_constraint_fn.h
+include/postgresql/server/catalog/pg_constraint_d.h
 include/postgresql/server/catalog/pg_control.h
 include/postgresql/server/catalog/pg_conversion.h
-include/postgresql/server/catalog/pg_conversion_fn.h
+include/postgresql/server/catalog/pg_conversion_d.h
 include/postgresql/server/catalog/pg_database.h
+include/postgresql/server/catalog/pg_database_d.h
 include/postgresql/server/catalog/pg_db_role_setting.h
+include/postgresql/server/catalog/pg_db_role_setting_d.h
 include/postgresql/server/catalog/pg_default_acl.h
+include/postgresql/server/catalog/pg_default_acl_d.h
 include/postgresql/server/catalog/pg_depend.h
+include/postgresql/server/catalog/pg_depend_d.h
 include/postgresql/server/catalog/pg_description.h
+include/postgresql/server/catalog/pg_description_d.h
 include/postgresql/server/catalog/pg_enum.h
+include/postgresql/server/catalog/pg_enum_d.h
 include/postgresql/server/catalog/pg_event_trigger.h
+include/postgresql/server/catalog/pg_event_trigger_d.h
 include/postgresql/server/catalog/pg_extension.h
+include/postgresql/server/catalog/pg_extension_d.h
 include/postgresql/server/catalog/pg_foreign_data_wrapper.h
+include/postgresql/server/catalog/pg_foreign_data_wrapper_d.h
 include/postgresql/server/catalog/pg_foreign_server.h
+include/postgresql/server/catalog/pg_foreign_server_d.h
 include/postgresql/server/catalog/pg_foreign_table.h
+include/postgresql/server/catalog/pg_foreign_table_d.h
 include/postgresql/server/catalog/pg_index.h
+include/postgresql/server/catalog/pg_index_d.h
 include/postgresql/server/catalog/pg_inherits.h
-include/postgresql/server/catalog/pg_inherits_fn.h
+include/postgresql/server/catalog/pg_inherits_d.h
 include/postgresql/server/catalog/pg_init_privs.h
+include/postgresql/server/catalog/pg_init_privs_d.h
 include/postgresql/server/catalog/pg_language.h
+include/postgresql/server/catalog/pg_language_d.h
 include/postgresql/server/catalog/pg_largeobject.h
+include/postgresql/server/catalog/pg_largeobject_d.h
 include/postgresql/server/catalog/pg_largeobject_metadata.h
+include/postgresql/server/catalog/pg_largeobject_metadata_d.h
 include/postgresql/server/catalog/pg_namespace.h
+include/postgresql/server/catalog/pg_namespace_d.h
 include/postgresql/server/catalog/pg_opclass.h
+include/postgresql/server/catalog/pg_opclass_d.h
 include/postgresql/server/catalog/pg_operator.h
-include/postgresql/server/catalog/pg_operator_fn.h
+include/postgresql/server/catalog/pg_operator_d.h
 include/postgresql/server/catalog/pg_opfamily.h
+include/postgresql/server/catalog/pg_opfamily_d.h
 include/postgresql/server/catalog/pg_partitioned_table.h
+include/postgresql/server/catalog/pg_partitioned_table_d.h
 include/postgresql/server/catalog/pg_pltemplate.h
+include/postgresql/server/catalog/pg_pltemplate_d.h
 include/postgresql/server/catalog/pg_policy.h
+include/postgresql/server/catalog/pg_policy_d.h
 include/postgresql/server/catalog/pg_proc.h
-include/postgresql/server/catalog/pg_proc_fn.h
+include/postgresql/server/catalog/pg_proc_d.h
 include/postgresql/server/catalog/pg_publication.h
+include/postgresql/server/catalog/pg_publication_d.h
 include/postgresql/server/catalog/pg_publication_rel.h
+include/postgresql/server/catalog/pg_publication_rel_d.h
 include/postgresql/server/catalog/pg_range.h
+include/postgresql/server/catalog/pg_range_d.h
 include/postgresql/server/catalog/pg_replication_origin.h
+include/postgresql/server/catalog/pg_replication_origin_d.h
 include/postgresql/server/catalog/pg_rewrite.h
+include/postgresql/server/catalog/pg_rewrite_d.h
 include/postgresql/server/catalog/pg_seclabel.h
+include/postgresql/server/catalog/pg_seclabel_d.h
 include/postgresql/server/catalog/pg_sequence.h
+include/postgresql/server/catalog/pg_sequence_d.h
 include/postgresql/server/catalog/pg_shdepend.h
+include/postgresql/server/catalog/pg_shdepend_d.h
 include/postgresql/server/catalog/pg_shdescription.h
+include/postgresql/server/catalog/pg_shdescription_d.h
 include/postgresql/server/catalog/pg_shseclabel.h
+include/postgresql/server/catalog/pg_shseclabel_d.h
 include/postgresql/server/catalog/pg_statistic.h
+include/postgresql/server/catalog/pg_statistic_d.h
 include/postgresql/server/catalog/pg_statistic_ext.h
+include/postgresql/server/catalog/pg_statistic_ext_d.h
 include/postgresql/server/catalog/pg_subscription.h
+include/postgresql/server/catalog/pg_subscription_d.h
 include/postgresql/server/catalog/pg_subscription_rel.h
+include/postgresql/server/catalog/pg_subscription_rel_d.h
 include/postgresql/server/catalog/pg_tablespace.h
+include/postgresql/server/catalog/pg_tablespace_d.h
 include/postgresql/server/catalog/pg_transform.h
+include/postgresql/server/catalog/pg_transform_d.h
 include/postgresql/server/catalog/pg_trigger.h
+include/postgresql/server/catalog/pg_trigger_d.h
 include/postgresql/server/catalog/pg_ts_config.h
+include/postgresql/server/catalog/pg_ts_config_d.h
 include/postgresql/server/catalog/pg_ts_config_map.h
+include/postgresql/server/catalog/pg_ts_config_map_d.h
 include/postgresql/server/catalog/pg_ts_dict.h
+include/postgresql/server/catalog/pg_ts_dict_d.h
 include/postgresql/server/catalog/pg_ts_parser.h
+include/postgresql/server/catalog/pg_ts_parser_d.h
 include/postgresql/server/catalog/pg_ts_template.h
+include/postgresql/server/catalog/pg_ts_template_d.h
 include/postgresql/server/catalog/pg_type.h
-include/postgresql/server/catalog/pg_type_fn.h
+include/postgresql/server/catalog/pg_type_d.h
 include/postgresql/server/catalog/pg_user_mapping.h
+include/postgresql/server/catalog/pg_user_mapping_d.h
 include/postgresql/server/catalog/schemapg.h
 include/postgresql/server/catalog/storage.h
 include/postgresql/server/catalog/storage_xlog.h
@@ -239,7 +296,9 @@ include/postgresql/server/common/base64.h
 include/postgresql/server/common/config_info.h
 include/postgresql/server/common/controldata_utils.h
 include/postgresql/server/common/fe_memutils.h
+include/postgresql/server/common/file_perm.h
 include/postgresql/server/common/file_utils.h
+include/postgresql/server/common/int.h
 include/postgresql/server/common/int128.h
 include/postgresql/server/common/ip.h
 include/postgresql/server/common/keywords.h
@@ -258,6 +317,7 @@ include/postgresql/server/datatype/timestamp.h
 include/postgresql/server/dynloader.h
 include/postgresql/server/executor/execExpr.h
 include/postgresql/server/executor/execParallel.h
+include/postgresql/server/executor/execPartition.h
 include/postgresql/server/executor/execdebug.h
 include/postgresql/server/executor/execdesc.h
 include/postgresql/server/executor/executor.h
@@ -310,6 +370,7 @@ include/postgresql/server/executor/tablefunc.h
 include/postgresql/server/executor/tqueue.h
 include/postgresql/server/executor/tstoreReceiver.h
 include/postgresql/server/executor/tuptable.h
+include/postgresql/server/fe_utils/conditional.h
 include/postgresql/server/fe_utils/connect.h
 include/postgresql/server/fe_utils/mbprint.h
 include/postgresql/server/fe_utils/print.h
@@ -325,6 +386,8 @@ include/postgresql/server/getaddrinfo.h
 include/postgresql/server/getopt_long.h
 include/postgresql/server/lib/binaryheap.h
 include/postgresql/server/lib/bipartite_match.h
+include/postgresql/server/lib/bloomfilter.h
+include/postgresql/server/lib/dshash.h
 include/postgresql/server/lib/hyperloglog.h
 include/postgresql/server/lib/ilist.h
 include/postgresql/server/lib/knapsack.h
@@ -414,6 +477,9 @@ include/postgresql/server/parser/parser.h
 include/postgresql/server/parser/parsetree.h
 include/postgresql/server/parser/scanner.h
 include/postgresql/server/parser/scansup.h
+include/postgresql/server/partitioning/partbounds.h
+include/postgresql/server/partitioning/partdefs.h
+include/postgresql/server/partitioning/partprune.h
 include/postgresql/server/pg_config.h
 include/postgresql/server/pg_config_ext.h
 include/postgresql/server/pg_config_manual.h
@@ -463,6 +529,7 @@ include/postgresql/server/port/win32_msvc/sys/param.h
 include/postgresql/server/port/win32_msvc/sys/time.h
 include/postgresql/server/port/win32_msvc/unistd.h
 include/postgresql/server/port/win32_msvc/utime.h
+include/postgresql/server/port/win32_port.h
 include/postgresql/server/portability/instr_time.h
 include/postgresql/server/portability/mem.h
 include/postgresql/server/postgres.h
@@ -548,6 +615,7 @@ include/postgresql/server/snowball/libstemmer/stem_UTF
 include/postgresql/server/statistics/extended_stats_internal.h
 include/postgresql/server/statistics/statistics.h
 include/postgresql/server/storage/backendid.h
+include/postgresql/server/storage/barrier.h
 include/postgresql/server/storage/block.h
 include/postgresql/server/storage/buf.h
 include/postgresql/server/storage/buf_internals.h
@@ -589,6 +657,7 @@ include/postgresql/server/storage/procsignal.h
 include/postgresql/server/storage/reinit.h
 include/postgresql/server/storage/relfilenode.h
 include/postgresql/server/storage/s_lock.h
+include/postgresql/server/storage/sharedfileset.h
 include/postgresql/server/storage/shm_mq.h
 include/postgresql/server/storage/shm_toc.h
 include/postgresql/server/storage/shmem.h
@@ -633,6 +702,7 @@ include/postgresql/server/utils/elog.h
 include/postgresql/server/utils/errcodes.h
 include/postgresql/server/utils/evtcache.h
 include/postgresql/server/utils/expandeddatum.h
+include/postgresql/server/utils/expandedrecord.h
 include/postgresql/server/utils/fmgroids.h
 include/postgresql/server/utils/fmgrprotos.h
 include/postgresql/server/utils/fmgrtab.h
@@ -658,6 +728,7 @@ include/postgresql/server/utils/memutils.h
 include/postgresql/server/utils/nabstime.h
 include/postgresql/server/utils/numeric.h
 include/postgresql/server/utils/palloc.h
+include/postgresql/server/utils/partcache.h
 include/postgresql/server/utils/pg_crc.h
 include/postgresql/server/utils/pg_locale.h
 include/postgresql/server/utils/pg_lsn.h
@@ -682,6 +753,7 @@ include/postgresql/server/utils/rls.h
 include/postgresql/server/utils/ruleutils.h
 include/postgresql/server/utils/sampling.h
 include/postgresql/server/utils/selfuncs.h
+include/postgresql/server/utils/sharedtuplestore.h
 include/postgresql/server/utils/snapmgr.h
 include/postgresql/server/utils/snapshot.h
 include/postgresql/server/utils/sortsupport.h
@@ -754,6 +826,7 @@ man/man1/pg_standby.1.gz
 man/man1/pg_test_fsync.1.gz
 man/man1/pg_test_timing.1.gz
 man/man1/pg_upgrade.1.gz
+man/man1/pg_verify_checksums.1.gz
 man/man1/pg_waldump.1.gz
 man/man1/pgbench.1.gz
 man/man1/postgres.1.gz
@@ -762,7 +835,9 @@ man/man1/psql.1.gz
 man/man1/reindexdb.1.gz
 man/man1/vacuumdb.1.gz
 man/man1/vacuumlo.1.gz
+man/man3/SPI_commit.3.gz
 man/man3/SPI_connect.3.gz
+man/man3/SPI_connect_ext.3.gz
 man/man3/SPI_copytuple.3.gz
 man/man3/SPI_cursor_close.3.gz
 man/man3/SPI_cursor_fetch.3.gz
@@ -802,10 +877,13 @@ man/man3/SPI_prepare_params.3.gz
 man/man3/SPI_register_relation.3.gz
 man/man3/SPI_register_trigger_data.3.gz
 man/man3/SPI_repalloc.3.gz
+man/man3/SPI_result_code_string.3.gz
 man/man3/SPI_returntuple.3.gz
+man/man3/SPI_rollback.3.gz
 man/man3/SPI_saveplan.3.gz
 man/man3/SPI_scroll_cursor_fetch.3.gz
 man/man3/SPI_scroll_cursor_move.3.gz
+man/man3/SPI_start_transaction.3.gz
 man/man3/SPI_unregister_relation.3.gz
 man/man3/dblink.3.gz
 man/man3/dblink_build_sql_delete.3.gz
@@ -847,8 +925,10 @@ man/man7/ALTER_OPERATOR.7.gz
 man/man7/ALTER_OPERATOR_CLASS.7.gz
 man/man7/ALTER_OPERATOR_FAMILY.7.gz
 man/man7/ALTER_POLICY.7.gz
+man/man7/ALTER_PROCEDURE.7.gz
 man/man7/ALTER_PUBLICATION.7.gz
 man/man7/ALTER_ROLE.7.gz
+man/man7/ALTER_ROUTINE.7.gz
 man/man7/ALTER_RULE.7.gz
 man/man7/ALTER_SCHEMA.7.gz
 man/man7/ALTER_SEQUENCE.7.gz
@@ -869,6 +949,7 @@ man/man7/ALTER_USER_MAPPING.7.gz
 man/man7/ALTER_VIEW.7.gz
 man/man7/ANALYZE.7.gz
 man/man7/BEGIN.7.gz
+man/man7/CALL.7.gz
 man/man7/CHECKPOINT.7.gz
 man/man7/CLOSE.7.gz
 man/man7/CLUSTER.7.gz
@@ -896,6 +977,7 @@ man/man7/CREATE_OPERATOR.7.gz
 man/man7/CREATE_OPERATOR_CLASS.7.gz
 man/man7/CREATE_OPERATOR_FAMILY.7.gz
 man/man7/CREATE_POLICY.7.gz
+man/man7/CREATE_PROCEDURE.7.gz
 man/man7/CREATE_PUBLICATION.7.gz
 man/man7/CREATE_ROLE.7.gz
 man/man7/CREATE_RULE.7.gz
@@ -943,8 +1025,10 @@ man/man7/DROP_OPERATOR_CLASS.7.gz
 man/man7/DROP_OPERATOR_FAMILY.7.gz
 man/man7/DROP_OWNED.7.gz
 man/man7/DROP_POLICY.7.gz
+man/man7/DROP_PROCEDURE.7.gz
 man/man7/DROP_PUBLICATION.7.gz
 man/man7/DROP_ROLE.7.gz
+man/man7/DROP_ROUTINE.7.gz
 man/man7/DROP_RULE.7.gz
 man/man7/DROP_SCHEMA.7.gz
 man/man7/DROP_SEQUENCE.7.gz
@@ -1005,107 +1089,110 @@ man/man7/VACUUM.7.gz
 man/man7/VALUES.7.gz
 man/man7/WITH.7.gz
 %%PORTDOCS%%%%DOCSDIR%%/README-client
-%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/ko/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/nb/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/pl/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/pt_BR/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/ro/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/ru/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/sv/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/ta/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/tr/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-10.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-10.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-10.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-10.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-10.mo
-%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-10.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-10.mo
-%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_config-10.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/de/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/de/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/de/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/es/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/es/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/es/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/he/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/he/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/he/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/he/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/he/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/it/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/it/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/it/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/it/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/nb/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/ta/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-11.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-11.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-11.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-11.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-11.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-11.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-11.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/pg_config-11.mo
 %%DATADIR%%/pg_service.conf.sample
 %%DATADIR%%/psqlrc.sample
 

Modified: head/databases/postgresql11-server/pkg-plist-contrib
==============================================================================
--- head/databases/postgresql10-server/pkg-plist-contrib	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/pkg-plist-contrib	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,6 +1,11 @@
 bin/oid2name
 bin/pg_standby
 bin/vacuumlo
+include/postgresql/server/extension/cube/cubedata.h
+include/postgresql/server/extension/hstore/hstore.h
+include/postgresql/server/extension/isn/isn.h
+include/postgresql/server/extension/ltree/ltree.h
+include/postgresql/server/extension/seg/segdata.h
 lib/postgresql/_int.so
 lib/postgresql/adminpack.so
 lib/postgresql/amcheck.so
@@ -10,7 +15,6 @@ lib/postgresql/autoinc.so
 lib/postgresql/bloom.so
 lib/postgresql/btree_gin.so
 lib/postgresql/btree_gist.so
-lib/postgresql/chkpass.so
 lib/postgresql/citext.so
 lib/postgresql/cube.so
 lib/postgresql/dblink.so
@@ -58,7 +62,9 @@ lib/postgresql/uuid-ossp.so
 %%PORTDOCS%%%%DOCSDIR%%/extension/timetravel.example
 %%DATADIR%%/extension/adminpack--1.0--1.1.sql
 %%DATADIR%%/extension/adminpack--1.0.sql
+%%DATADIR%%/extension/adminpack--1.1--2.0.sql
 %%DATADIR%%/extension/adminpack.control
+%%DATADIR%%/extension/amcheck--1.0--1.1.sql
 %%DATADIR%%/extension/amcheck--1.0.sql
 %%DATADIR%%/extension/amcheck.control
 %%DATADIR%%/extension/autoinc--1.0.sql
@@ -69,6 +75,7 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/btree_gin--1.0--1.1.sql
 %%DATADIR%%/extension/btree_gin--1.0.sql
 %%DATADIR%%/extension/btree_gin--1.1--1.2.sql
+%%DATADIR%%/extension/btree_gin--1.2--1.3.sql
 %%DATADIR%%/extension/btree_gin--unpackaged--1.0.sql
 %%DATADIR%%/extension/btree_gin.control
 %%DATADIR%%/extension/btree_gist--1.0--1.1.sql
@@ -79,19 +86,19 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/btree_gist--1.4--1.5.sql
 %%DATADIR%%/extension/btree_gist--unpackaged--1.0.sql
 %%DATADIR%%/extension/btree_gist.control
-%%DATADIR%%/extension/chkpass--1.0.sql
-%%DATADIR%%/extension/chkpass--unpackaged--1.0.sql
-%%DATADIR%%/extension/chkpass.control
 %%DATADIR%%/extension/citext--1.0--1.1.sql
 %%DATADIR%%/extension/citext--1.1--1.2.sql
 %%DATADIR%%/extension/citext--1.2--1.3.sql
 %%DATADIR%%/extension/citext--1.3--1.4.sql
+%%DATADIR%%/extension/citext--1.4--1.5.sql
 %%DATADIR%%/extension/citext--1.4.sql
 %%DATADIR%%/extension/citext--unpackaged--1.0.sql
 %%DATADIR%%/extension/citext.control
 %%DATADIR%%/extension/cube--1.0--1.1.sql
 %%DATADIR%%/extension/cube--1.1--1.2.sql
+%%DATADIR%%/extension/cube--1.2--1.3.sql
 %%DATADIR%%/extension/cube--1.2.sql
+%%DATADIR%%/extension/cube--1.3--1.4.sql
 %%DATADIR%%/extension/cube--unpackaged--1.0.sql
 %%DATADIR%%/extension/cube.control
 %%DATADIR%%/extension/dblink--1.0--1.1.sql
@@ -119,6 +126,7 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/hstore--1.1--1.2.sql
 %%DATADIR%%/extension/hstore--1.2--1.3.sql
 %%DATADIR%%/extension/hstore--1.3--1.4.sql
+%%DATADIR%%/extension/hstore--1.4--1.5.sql
 %%DATADIR%%/extension/hstore--1.4.sql
 %%DATADIR%%/extension/hstore--unpackaged--1.0.sql
 %%DATADIR%%/extension/hstore.control
@@ -135,6 +143,7 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/intarray--unpackaged--1.0.sql
 %%DATADIR%%/extension/intarray.control
 %%DATADIR%%/extension/isn--1.0--1.1.sql
+%%DATADIR%%/extension/isn--1.1--1.2.sql
 %%DATADIR%%/extension/isn--1.1.sql
 %%DATADIR%%/extension/isn--unpackaged--1.0.sql
 %%DATADIR%%/extension/isn.control
@@ -156,6 +165,7 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/pageinspect--1.4--1.5.sql
 %%DATADIR%%/extension/pageinspect--1.5--1.6.sql
 %%DATADIR%%/extension/pageinspect--1.5.sql
+%%DATADIR%%/extension/pageinspect--1.6--1.7.sql
 %%DATADIR%%/extension/pageinspect--unpackaged--1.0.sql
 %%DATADIR%%/extension/pageinspect.control
 %%DATADIR%%/extension/pg_buffercache--1.0--1.1.sql
@@ -170,6 +180,7 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/pg_freespacemap--unpackaged--1.0.sql
 %%DATADIR%%/extension/pg_freespacemap.control
 %%DATADIR%%/extension/pg_prewarm--1.0--1.1.sql
+%%DATADIR%%/extension/pg_prewarm--1.1--1.2.sql
 %%DATADIR%%/extension/pg_prewarm--1.1.sql
 %%DATADIR%%/extension/pg_prewarm.control
 %%DATADIR%%/extension/pg_stat_statements--1.0--1.1.sql
@@ -178,11 +189,13 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/pg_stat_statements--1.3--1.4.sql
 %%DATADIR%%/extension/pg_stat_statements--1.4--1.5.sql
 %%DATADIR%%/extension/pg_stat_statements--1.4.sql
+%%DATADIR%%/extension/pg_stat_statements--1.5--1.6.sql
 %%DATADIR%%/extension/pg_stat_statements--unpackaged--1.0.sql
 %%DATADIR%%/extension/pg_stat_statements.control
 %%DATADIR%%/extension/pg_trgm--1.0--1.1.sql
 %%DATADIR%%/extension/pg_trgm--1.1--1.2.sql
 %%DATADIR%%/extension/pg_trgm--1.2--1.3.sql
+%%DATADIR%%/extension/pg_trgm--1.3--1.4.sql
 %%DATADIR%%/extension/pg_trgm--1.3.sql
 %%DATADIR%%/extension/pg_trgm--unpackaged--1.0.sql
 %%DATADIR%%/extension/pg_trgm.control
@@ -215,7 +228,9 @@ lib/postgresql/uuid-ossp.so
 %%DATADIR%%/extension/refint--unpackaged--1.0.sql
 %%DATADIR%%/extension/refint.control
 %%DATADIR%%/extension/seg--1.0--1.1.sql
+%%DATADIR%%/extension/seg--1.1--1.2.sql
 %%DATADIR%%/extension/seg--1.1.sql
+%%DATADIR%%/extension/seg--1.2--1.3.sql
 %%DATADIR%%/extension/seg--unpackaged--1.0.sql
 %%DATADIR%%/extension/seg.control
 %%DATADIR%%/extension/sslinfo--1.0--1.1.sql

Modified: head/databases/postgresql11-server/pkg-plist-plperl
==============================================================================
--- head/databases/postgresql10-server/pkg-plist-plperl	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/pkg-plist-plperl	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,4 +1,5 @@
 include/postgresql/server/plperl.h
+include/postgresql/server/plperl_helpers.h
 include/postgresql/server/ppport.h
 %%DATADIR%%/extension/plperlu--1.0.sql
 %%DATADIR%%/extension/plperl.control

Modified: head/databases/postgresql11-server/pkg-plist-plpython
==============================================================================
--- head/databases/postgresql10-server/pkg-plist-plpython	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/pkg-plist-plpython	Fri Oct 19 21:32:08 2018	(r482456)
@@ -1,5 +1,17 @@
+include/postgresql/server/plpy_cursorobject.h
+include/postgresql/server/plpy_elog.h
+include/postgresql/server/plpy_exec.h
+include/postgresql/server/plpy_main.h
+include/postgresql/server/plpy_planobject.h
+include/postgresql/server/plpy_plpymodule.h
+include/postgresql/server/plpy_procedure.h
+include/postgresql/server/plpy_resultobject.h
+include/postgresql/server/plpy_spi.h
+include/postgresql/server/plpy_subxactobject.h
+include/postgresql/server/plpy_typeio.h
 include/postgresql/server/plpy_util.h
 include/postgresql/server/plpython.h
+lib/postgresql/pgxs/src/pl/plpython/regress-python3-mangle.mk
 %%DOCSDIR%%/README-plpython
 %%PYTHON2%%lib/postgresql/plpython2.so
 %%PYTHON3%%lib/postgresql/plpython3.so

Modified: head/databases/postgresql11-server/pkg-plist-server
==============================================================================
--- head/databases/postgresql10-server/pkg-plist-server	Thu Oct 18 19:33:24 2018	(r482357)
+++ head/databases/postgresql11-server/pkg-plist-server	Fri Oct 19 21:32:08 2018	(r482456)
@@ -48,6 +48,7 @@ lib/postgresql/utf8_and_win.so
 lib/libpgcommon.a
 %%PORTDOCS%%%%DOCSDIR%%/README-server
 %%DATADIR%%/conversion_create.sql
+%%DATADIR%%/errcodes.txt
 %%DATADIR%%/information_schema.sql
 %%DATADIR%%/pg_hba.conf.sample
 %%DATADIR%%/pg_ident.conf.sample
@@ -61,157 +62,161 @@ lib/libpgcommon.a
 %%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql
 %%DATADIR%%/extension/plpgsql.control
 %%DATADIR%%/postgres.shdescription
-%%NLS%%share/locale/cs/LC_MESSAGES/initdb-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-10.mo
-%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/initdb-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-10.mo
-%%NLS%%share/locale/de/LC_MESSAGES/postgres-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/initdb-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-10.mo
-%%NLS%%share/locale/es/LC_MESSAGES/postgres-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/initdb-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-10.mo
-%%NLS%%share/locale/fr/LC_MESSAGES/postgres-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/initdb-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/pg_basebackup-10.mo
-%%NLS%%share/locale/he/LC_MESSAGES/pg_ctl-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/initdb-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-10.mo
-%%NLS%%share/locale/it/LC_MESSAGES/postgres-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/initdb-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-10.mo
-%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-10.mo

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810192132.w9JLW8dZ077643>