Stamp 9.2.22.
commit : 56fc4f7c9c8168b93b45ccf48781d77073d271dc
author : Tom Lane <[email protected]>
date : Mon, 7 Aug 2017 17:19:50 -0400
committer: Tom Lane <[email protected]>
date : Mon, 7 Aug 2017 17:19:50 -0400
M configure
M configure.in
M doc/bug.template
M src/include/pg_config.h.win32
M src/interfaces/libpq/libpq.rc.in
M src/port/win32ver.rc
Translation updates
commit : 5fa4515a6a8536684285bc4837ec352fe2afe012
author : Peter Eisentraut <[email protected]>
date : Mon, 7 Aug 2017 13:52:45 -0400
committer: Peter Eisentraut <[email protected]>
date : Mon, 7 Aug 2017 13:52:45 -0400
Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git
Source-Git-Hash: 6535410ecbfd22426b13c2ddb1302145d66c1b4d
M src/backend/po/es.po
M src/backend/po/fr.po
M src/backend/po/it.po
M src/backend/po/pt_BR.po
M src/backend/po/ru.po
M src/bin/initdb/po/es.po
M src/bin/pg_basebackup/po/es.po
M src/bin/pg_basebackup/po/ru.po
M src/bin/pg_config/po/es.po
M src/bin/pg_controldata/po/es.po
M src/bin/pg_ctl/po/es.po
M src/bin/pg_ctl/po/it.po
M src/bin/pg_dump/po/es.po
M src/bin/pg_dump/po/pt_BR.po
M src/bin/pg_dump/po/ru.po
M src/bin/pg_resetxlog/po/de.po
M src/bin/pg_resetxlog/po/es.po
M src/bin/pg_resetxlog/po/fr.po
M src/bin/pg_resetxlog/po/pt_BR.po
M src/bin/psql/po/de.po
M src/bin/psql/po/es.po
M src/bin/psql/po/fr.po
M src/bin/psql/po/it.po
M src/bin/psql/po/pt_BR.po
M src/bin/psql/po/ru.po
M src/bin/scripts/po/es.po
M src/interfaces/ecpg/ecpglib/po/es.po
M src/interfaces/ecpg/preproc/po/es.po
M src/interfaces/ecpg/preproc/po/pt_BR.po
M src/interfaces/ecpg/preproc/po/ru.po
M src/interfaces/libpq/po/de.po
M src/interfaces/libpq/po/es.po
M src/interfaces/libpq/po/fr.po
M src/interfaces/libpq/po/it.po
M src/interfaces/libpq/po/pt_BR.po
M src/interfaces/libpq/po/ru.po
M src/pl/plperl/po/es.po
M src/pl/plpgsql/src/po/es.po
M src/pl/plpython/po/es.po
M src/pl/tcl/po/es.po
Last-minute updates for release notes.
commit : e28b2b094319e007b53ba384bb114c3f0b775a05
author : Tom Lane <[email protected]>
date : Mon, 7 Aug 2017 11:46:20 -0400
committer: Tom Lane <[email protected]>
date : Mon, 7 Aug 2017 11:46:20 -0400
Security: CVE-2017-7546, CVE-2017-7547, CVE-2017-7548
M doc/src/sgml/release-9.2.sgml
Again match pg_user_mappings to information_schema.user_mapping_options.
commit : e255e97a2635cc74fd0efa41b6e872941995e237
author : Noah Misch <[email protected]>
date : Mon, 7 Aug 2017 07:09:28 -0700
committer: Noah Misch <[email protected]>
date : Mon, 7 Aug 2017 07:09:28 -0700
Commit 3eefc51053f250837c3115c12f8119d16881a2d7 claimed to make
pg_user_mappings enforce the qualifications user_mapping_options had
been enforcing, but its removal of a longstanding restriction left them
distinct when the current user is the subject of a mapping yet has no
server privileges. user_mapping_options emits no rows for such a
mapping, but pg_user_mappings includes full umoptions. Change
pg_user_mappings to show null for umoptions. Back-patch to 9.2, like
the above commit.
Reviewed by Tom Lane. Reported by Jeff Janes.
Security: CVE-2017-7547
M doc/src/sgml/catalogs.sgml
M src/backend/catalog/system_views.sql
M src/test/regress/expected/foreign_data.out
M src/test/regress/expected/rules.out
M src/test/regress/sql/foreign_data.sql
Don't allow logging in with empty password.
commit : 06651648a6dfb49e93612cc1dbd15dce362e31be
author : Heikki Linnakangas <[email protected]>
date : Mon, 7 Aug 2017 17:03:42 +0300
committer: Heikki Linnakangas <[email protected]>
date : Mon, 7 Aug 2017 17:03:42 +0300
Some authentication methods allowed it, others did not. In the client-side,
libpq does not even try to authenticate with an empty password, which makes
using empty passwords hazardous: an administrator might think that an
account with an empty password cannot be used to log in, because psql
doesn't allow it, and not realize that a different client would in fact
allow it. To clear that confusion and to be be consistent, disallow empty
passwords in all authentication methods.
All the authentication methods that used plaintext authentication over the
wire, except for BSD authentication, already checked that the password
received from the user was not empty. To avoid forgetting it in the future
again, move the check to the recv_password_packet function. That only
forbids using an empty password with plaintext authentication, however.
MD5 and SCRAM need a different fix:
* In stable branches, check that the MD5 hash stored for the user does not
not correspond to an empty string. This adds some overhead to MD5
authentication, because the server needs to compute an extra MD5 hash, but
it is not noticeable in practice.
* In HEAD, modify CREATE and ALTER ROLE to clear the password if an empty
string, or a password hash that corresponds to an empty string, is
specified. The user-visible behavior is the same as in the stable branches,
the user cannot log in, but it seems better to stop the empty password from
entering the system in the first place. Secondly, it is fairly expensive to
check that a SCRAM hash doesn't correspond to an empty string, because
computing a SCRAM hash is much more expensive than an MD5 hash by design,
so better avoid doing that on every authentication.
We could clear the password on CREATE/ALTER ROLE also in stable branches,
but we would still need to check at authentication time, because even if we
prevent empty passwords from being stored in pg_authid, there might be
existing ones there already.
Reported by Jeroen van der Ham, Ben de Graaff and Jelte Fennema.
Security: CVE-2017-7546
M src/backend/libpq/auth.c
M src/backend/libpq/crypt.c
Release notes for 9.6.4, 9.5.8, 9.4.13, 9.3.18, 9.2.22.
commit : 41d2d46e96016104de7e31c418e2029b8dd8b871
author : Tom Lane <[email protected]>
date : Sun, 6 Aug 2017 17:56:49 -0400
committer: Tom Lane <[email protected]>
date : Sun, 6 Aug 2017 17:56:49 -0400
M doc/src/sgml/release-9.2.sgml
Disallow SSL session tickets.
commit : c180d2eb7614e9a9e4f0b81958100f644dbb9ed5
author : Tom Lane <[email protected]>
date : Fri, 4 Aug 2017 11:07:11 -0400
committer: Tom Lane <[email protected]>
date : Fri, 4 Aug 2017 11:07:11 -0400
We don't actually support session tickets, since we do not create an SSL
session identifier. But it seems that OpenSSL will issue a session ticket
on-demand anyway, which will then fail when used. This results in
reconnection failures when using ticket-aware client-side SSL libraries
(such as the Npgsql .NET driver), as reported by Shay Rojansky.
To fix, just tell OpenSSL not to issue tickets. At some point in the
far future, we might consider enabling tickets instead. But the security
implications of that aren't entirely clear; and besides it would have
little benefit except for very short-lived database connections, which is
Something We're Bad At anyhow. It would take a lot of other work to get
to a point where that would really be an exciting thing to do.
While at it, also tell OpenSSL not to use a session cache. This doesn't
really do anything, since a backend would never populate the cache anyway,
but it might gain some micro-efficiencies and/or reduce security
exposures.
Patch by me, per discussion with Heikki Linnakangas and Shay Rojansky.
Back-patch to all supported versions.
Discussion: https://postgr.es/m/CADT4RqBU8N-csyZuzaook-c795dt22Zcwg1aHWB6tfVdAkodZA@mail.gmail.com
M src/backend/libpq/be-secure.c
Add missing ALTER USER variants
commit : 22eb38caa11979e3d89030eb30c9897bbb9e05ef
author : Peter Eisentraut <[email protected]>
date : Thu, 3 Aug 2017 20:49:07 -0400
committer: Peter Eisentraut <[email protected]>
date : Thu, 3 Aug 2017 20:49:07 -0400
ALTER USER ... SET did not support all the syntax variants of ALTER ROLE
... SET.
Reported-by: Pavel Golub <[email protected]>
M doc/src/sgml/ref/alter_user.sgml
M src/backend/parser/gram.y
Add pgtcl back to the list of externally-maintained client interfaces.
commit : 2666726cd2eac83885b2176f23792b5da178d02b
author : Tom Lane <[email protected]>
date : Wed, 2 Aug 2017 16:55:03 -0400
committer: Tom Lane <[email protected]>
date : Wed, 2 Aug 2017 16:55:03 -0400
FlightAware is still maintaining this, and indeed is seemingly being
more active with it than the pgtclng fork is. List both, for the
time being anyway.
In the back branches, also back-port commit e20f679f6 and other
recent updates to the client-interfaces list. I think these are
probably of current interest to users of back branches. I did
not touch the list of externally maintained PLs in the back
branches, though. Those are much more likely to be server version
sensitive, and I don't know which of these PLs work all the way back.
Discussion: https://postgr.es/m/[email protected]
M doc/src/sgml/external-projects.sgml
Silence warning from modern perl about unescaped braces
commit : 1188b9b2c3b987e2abe3e0dca0c6dfe6f350a6bd
author : Tom Lane <[email protected]>
date : Wed, 2 Aug 2017 15:07:21 -0400
committer: Tom Lane <[email protected]>
date : Wed, 2 Aug 2017 15:07:21 -0400
Back-patch commit 76a1c97bf21c301f61bb41345e0cdd0d365b2086 into
the older branches (9.5 and before). This is needed because perl
5.26 and later treats the case as an error not just a warning.
Original patch by Andrew Dunstan, need for back-patch noted by
Ashutosh Sharma
Discussion: https://postgr.es/m/CAE9k0PkfNcmj9pA7Yx4qQ=K=3aY4TuiRhp7KYpayDWm9MYsnjg@mail.gmail.com
M src/tools/msvc/Install.pm
Doc: specify that the minimum supported version of Perl is 5.8.3.
commit : c522b52d3cf2b1a42fd7795c652d6fb1574a435c
author : Tom Lane <[email protected]>
date : Mon, 31 Jul 2017 13:42:48 -0400
committer: Tom Lane <[email protected]>
date : Mon, 31 Jul 2017 13:42:48 -0400
Previously the docs just said "5.8 or later". Experimentation shows
that while you can build on Unix from a git checkout with 5.8.0,
compiling recent PL/Perl requires at least 5.8.1, and you won't be
able to run the TAP tests with less than 5.8.3 because that's when
they added "prove". (I do not have any information on just what the
MSVC build scripts require.)
Since all these versions are quite ancient, let's not split hairs
in the docs, but just say that 5.8.3 is the minimum requirement.
Discussion: https://postgr.es/m/[email protected]
M doc/src/sgml/install-windows.sgml
M doc/src/sgml/installation.sgml
PL/Perl portability fix: absorb relevant -D switches from Perl.
commit : 456c7dff2af1b32ae2d1922ca672cf93ec9edf1d
author : Tom Lane <[email protected]>
date : Mon, 31 Jul 2017 12:38:35 -0400
committer: Tom Lane <[email protected]>
date : Mon, 31 Jul 2017 12:38:35 -0400
Back-patch of commit 3c163a7fc76debbbdad1bdd3c43721cffe72f4db,
which see for more info.
Also throw in commit b4cc35fbb709bd6fcae8998f041fd731c9acbf42,
so Coverity doesn't whine about the back branches.
Ashutosh Sharma, some adjustments by me
Discussion: https://postgr.es/m/CANFyU97OVQ3+Mzfmt3MhuUm5NwPU=-FtbNH5Eb7nZL9ua8=rcA@mail.gmail.com
M config/perl.m4
M configure
M configure.in
M src/Makefile.global.in
M src/pl/plperl/GNUmakefile
M src/pl/plperl/plperl.c
M src/tools/msvc/Mkvcbuild.pm
PL/Perl portability fix: avoid including XSUB.h in plperl.c.
commit : b4b958251fbfc45690656d306938a76a46d91145
author : Tom Lane <[email protected]>
date : Mon, 31 Jul 2017 12:10:36 -0400
committer: Tom Lane <[email protected]>
date : Mon, 31 Jul 2017 12:10:36 -0400
Back-patch of commit bebe174bb4462ef079a1d7eeafb82ff969f160a4,
which see for more info.
Patch by me, with some help from Ashutosh Sharma
Discussion: https://postgr.es/m/CANFyU97OVQ3+Mzfmt3MhuUm5NwPU=-FtbNH5Eb7nZL9ua8=rcA@mail.gmail.com
M src/pl/plperl/SPI.xs
M src/pl/plperl/Util.xs
M src/pl/plperl/plperl.c
M src/pl/plperl/plperl.h
M src/pl/plperl/plperl_helpers.h
Add missing comment in postgresql.conf.
commit : 7b38063603e00dd15bb943c1f8c838df1b192bfc
author : Tatsuo Ishii <[email protected]>
date : Mon, 31 Jul 2017 11:24:51 +0900
committer: Tatsuo Ishii <[email protected]>
date : Mon, 31 Jul 2017 11:24:51 +0900
current_source requires to restart server to reflect the new
value. Per Yugo Nagata and Masahiko Sawada.
Back patched to 9.2 and beyond.
M src/backend/utils/misc/postgresql.conf.sample
Fix psql tab completion for CREATE USER MAPPING.
commit : 70f90a103c80c9a0db3ace858d4fcad0b4dff4bc
author : Tom Lane <[email protected]>
date : Thu, 27 Jul 2017 14:13:15 -0400
committer: Tom Lane <[email protected]>
date : Thu, 27 Jul 2017 14:13:15 -0400
After typing CREATE USER M..., it would not fill in MAPPING FOR,
even though that was clearly intended behavior.
Jeff Janes
Discussion: https://postgr.es/m/CAMkU=1wo2iQ6jWnN=egqOb5NxEPn0PpANEtKHr3uPooQ+nYPtw@mail.gmail.com
M src/bin/psql/tab-complete.c
Clean up SQL emitted by psql/describe.c.
commit : 51b76f974176b7e517b7836f56e360edbb6fd2fd
author : Tom Lane <[email protected]>
date : Wed, 26 Jul 2017 19:35:35 -0400
committer: Tom Lane <[email protected]>
date : Wed, 26 Jul 2017 19:35:35 -0400
Fix assorted places that had not bothered with the convention of
prefixing catalog and function names with "pg_catalog.". That
could possibly result in query failure when running with a nondefault
search_path. Also fix two places that weren't quoting OID literals.
I think the latter hasn't mattered much since about 7.3, but it's still
a bad idea to be doing it in 99 places and not in 2 others.
Also remove a useless EXISTS sub-select that someone had stuck into
describeOneTableDetails' queries for child tables. We just got the OID
out of pg_class, so I hardly see how checking that it exists in pg_class
was doing anything helpful.
In passing, try to improve the emitted formatting of a couple of
these queries, though I didn't work really hard on that. And merge
unnecessarily duplicative coding in some other places.
Much of this was new in HEAD, but some was quite old; back-patch
as appropriate.
M src/bin/psql/describe.c
Fix race condition in predicate-lock init code in EXEC_BACKEND builds.
commit : 05a562d9cefc2effdd090baae1e300760875fce2
author : Tom Lane <[email protected]>
date : Mon, 24 Jul 2017 16:45:47 -0400
committer: Tom Lane <[email protected]>
date : Mon, 24 Jul 2017 16:45:47 -0400
Trading a little too heavily on letting the code path be the same whether
we were creating shared data structures or only attaching to them,
InitPredicateLocks() inserted the "scratch" PredicateLockTargetHash entry
unconditionally. This is just wrong if we're in a postmaster child,
which would only reach this code in EXEC_BACKEND builds. Most of the
time, the hash_search(HASH_ENTER) call would simply report that the
entry already existed, causing no visible effect since the code did not
bother to check for that possibility. However, if this happened while
some other backend had transiently removed the "scratch" entry, then
that other backend's eventual RestoreScratchTarget would suffer an
assert failure; this appears to be the explanation for a recent failure
on buildfarm member culicidae. In non-assert builds, there would be
no visible consequences there either. But nonetheless this is a pretty
bad bug for EXEC_BACKEND builds, for two reasons:
1. Each new backend would perform the hash_search(HASH_ENTER) call
without holding any lock that would prevent concurrent access to the
PredicateLockTargetHash hash table. This creates a low but certainly
nonzero risk of corruption of that hash table.
2. In the event that the race condition occurred, by reinserting the
scratch entry too soon, we were defeating the entire purpose of the
scratch entry, namely to guarantee that transaction commit could move
hash table entries around with no risk of out-of-memory failure.
The odds of an actual OOM failure are quite low, but not zero, and if
it did happen it would again result in corruption of the hash table.
The user-visible symptoms of such corruption are a little hard to predict,
but would presumably amount to misbehavior of SERIALIZABLE transactions
that'd require a crash or postmaster restart to fix.
To fix, just skip the hash insertion if IsUnderPostmaster. I also
inserted a bunch of assertions that the expected things happen
depending on whether IsUnderPostmaster is true. That might be overkill,
since most comparable code in other functions isn't quite that paranoid,
but once burnt twice shy.
In passing, also move a couple of lines to places where they seemed
to make more sense.
Diagnosis of problem by Thomas Munro, patch by me. Back-patch to
all supported branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/storage/lmgr/predicate.c
Ensure that pg_get_ruledef()'s output matches pg_get_viewdef()'s.
commit : d9874fde89c918dd4b1431d7b9f8f0ae29e78ea7
author : Tom Lane <[email protected]>
date : Mon, 24 Jul 2017 15:16:31 -0400
committer: Tom Lane <[email protected]>
date : Mon, 24 Jul 2017 15:16:31 -0400
Various cases involving renaming of view columns are handled by having
make_viewdef pass down the view's current relation tupledesc to
get_query_def, which then takes care to use the column names from the
tupledesc for the output column names of the SELECT. For some reason
though, we'd missed teaching make_ruledef to do similarly when it is
printing an ON SELECT rule, even though this is exactly the same case.
The results from pg_get_ruledef would then be different and arguably wrong.
In particular, this breaks pre-v10 versions of pg_dump, which in some
situations would define views by means of emitting a CREATE RULE ... ON
SELECT command. Third-party tools might not be happy either.
In passing, clean up some crufty code in make_viewdef; we'd apparently
modernized the equivalent code in make_ruledef somewhere along the way,
and missed this copy.
Per report from Gilles Darold. Back-patch to all supported versions.
Discussion: https://postgr.es/m/[email protected]
M src/backend/utils/adt/ruleutils.c
M src/test/regress/expected/create_view.out
M src/test/regress/sql/create_view.sql
MSVC: Accept tcl86.lib in addition to tcl86t.lib.
commit : 4885e5c88b274d8f7da9f4dcbbe0006aa9124420
author : Noah Misch <[email protected]>
date : Sun, 23 Jul 2017 23:53:27 -0700
committer: Noah Misch <[email protected]>
date : Sun, 23 Jul 2017 23:53:27 -0700
ActiveTcl8.6.4.1.299124-win32-x86_64-threaded.exe ships just tcl86.lib.
Back-patch to 9.2, like the commit recognizing tcl86t.lib.
M src/tools/msvc/Mkvcbuild.pm
Doc: clarify description of degenerate NATURAL joins.
commit : 80af818dd618b18d8e4b3f629844190473f2bae2
author : Tom Lane <[email protected]>
date : Thu, 20 Jul 2017 12:41:26 -0400
committer: Tom Lane <[email protected]>
date : Thu, 20 Jul 2017 12:41:26 -0400
Claiming that NATURAL JOIN is equivalent to CROSS JOIN when there are
no common column names is only strictly correct if it's an inner join;
you can't say e.g. CROSS LEFT JOIN. Better to explain it as meaning
JOIN ON TRUE, instead. Per a suggestion from David Johnston.
Discussion: https://postgr.es/m/CAKFQuwb+mYszQhDS9f_dqRrk1=Pe-S6D=XMkAXcDf4ykKPmgKQ@mail.gmail.com
M doc/src/sgml/queries.sgml
M doc/src/sgml/ref/select.sgml
Doc: add missing note about permissions needed to change log_lock_waits.
commit : 861f4fb9fe47f2aae31e44beebc8e925936c0367
author : Tom Lane <[email protected]>
date : Wed, 19 Jul 2017 12:58:36 -0400
committer: Tom Lane <[email protected]>
date : Wed, 19 Jul 2017 12:58:36 -0400
log_lock_waits is PGC_SUSET, but config.sgml lacked the standard
boilerplate sentence noting that.
Report: https://postgr.es/m/[email protected]
M doc/src/sgml/config.sgml
Doc: explain dollar quoting in the intro part of the pl/pgsql chapter.
commit : 2d08d036eae3f50bcda98113a322020479264821
author : Tom Lane <[email protected]>
date : Mon, 17 Jul 2017 16:43:03 -0400
committer: Tom Lane <[email protected]>
date : Mon, 17 Jul 2017 16:43:03 -0400
We're throwing people into the guts of the syntax with not much context;
let's back up one step and point out that this goes inside a literal in
a CREATE FUNCTION command. Per suggestion from Kurt Kartaltepe.
Discussion: https://postgr.es/m/CACawnnyWAmH+au8nfZhLiFfWKjXy4d0kY+eZWfcxPRnjVfaa_Q@mail.gmail.com
M doc/src/sgml/plpgsql.sgml
Merge large_object.sql test into largeobject.source.
commit : da43d624d0f234596d5b09433e7178d06f965832
author : Tom Lane <[email protected]>
date : Mon, 17 Jul 2017 15:28:17 -0400
committer: Tom Lane <[email protected]>
date : Mon, 17 Jul 2017 15:28:17 -0400
It seems pretty confusing to have tests named both largeobject and
large_object. The latter is of very recent vintage (commit ff992c074),
so get rid of it in favor of merging into the former.
Also, enable the LO comment test that was added by commit 70ad7ed4e,
since the later commit added the then-missing pg_upgrade functionality.
The large_object.sql test case is almost completely redundant with that,
but not quite: it seems like creating a user-defined LO with an OID in
the system range might be an interesting case for pg_upgrade, so let's
keep it.
Like the earlier patch, back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
D src/test/regress/expected/large_object.out
M src/test/regress/input/largeobject.source
M src/test/regress/output/largeobject.source
M src/test/regress/output/largeobject_1.source
M src/test/regress/parallel_schedule
M src/test/regress/serial_schedule
D src/test/regress/sql/large_object.sql
Fix pg_basebackup output to stdout on Windows.
commit : 4b994a96c7086a0ca09fc34f5749b5e3e366d7b1
author : Heikki Linnakangas <[email protected]>
date : Fri, 14 Jul 2017 16:02:53 +0300
committer: Heikki Linnakangas <[email protected]>
date : Fri, 14 Jul 2017 16:02:53 +0300
When writing a backup to stdout with pg_basebackup on Windows, put stdout
to binary mode. Any CR bytes in the output will otherwise be output
incorrectly as CR+LF.
In the passing, standardize on using "_setmode" instead of "setmode", for
the sake of consistency. They both do the same thing, but according to
MSDN documentation, setmode is deprecated.
Fixes bug #14634, reported by Henry Boehlert. Patch by Haribabu Kommi.
Backpatch to all supported versions.
Discussion: https://www.postgresql.org/message-id/[email protected]
M src/bin/pg_basebackup/pg_basebackup.c
M src/bin/pg_dump/pg_backup_archiver.c
Fix dumping of FUNCTION RTEs that contain non-function-call expressions.
commit : bccfb17766d845cbafc3d667ad64b66ad24a84f5
author : Tom Lane <[email protected]>
date : Thu, 13 Jul 2017 19:24:44 -0400
committer: Tom Lane <[email protected]>
date : Thu, 13 Jul 2017 19:24:44 -0400
The grammar will only accept something syntactically similar to a function
call in a function-in-FROM expression. However, there are various ways
to input something that ruleutils.c won't deparse that way, potentially
leading to a view or rule that fails dump/reload. Fix by inserting a
dummy CAST around anything that isn't going to deparse as a function
(which is one of the ways to get something like that in there in the
first place).
In HEAD, also make use of the infrastructure added by this to avoid
emitting unnecessary parentheses in CREATE INDEX deparsing. I did
not change that in back branches, thinking that people might find it
to be unexpected/unnecessary behavioral change.
In HEAD, also fix incorrect logic for when to add extra parens to
partition key expressions. Somebody apparently thought they could
get away with simpler logic than pg_get_indexdef_worker has, but
they were wrong --- a counterexample is PARTITION BY LIST ((a[1])).
Ignoring the prettyprint flag for partition expressions isn't exactly
a nice solution anyway.
This has been broken all along, so back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/utils/adt/ruleutils.c
M src/test/regress/expected/create_view.out
M src/test/regress/sql/create_view.sql
Fix race between GetNewTransactionId and GetOldestActiveTransactionId.
commit : 40c49bd7198e262b570e5f40c7e2bbb3b8ced609
author : Heikki Linnakangas <[email protected]>
date : Thu, 13 Jul 2017 15:47:02 +0300
committer: Heikki Linnakangas <[email protected]>
date : Thu, 13 Jul 2017 15:47:02 +0300
The race condition goes like this:
1. GetNewTransactionId advances nextXid e.g. from 100 to 101
2. GetOldestActiveTransactionId reads the new nextXid, 101
3. GetOldestActiveTransactionId loops through the proc array. There are no
active XIDs there, so it returns 101 as the oldest active XID.
4. GetNewTransactionid stores XID 100 to MyPgXact->xid
So, GetOldestActiveTransactionId returned XID 101, even though 100 only
just started and is surely still running.
This would be hard to hit in practice, and even harder to spot any ill
effect if it happens. GetOldestActiveTransactionId is only used when
creating a checkpoint in a master server, and the race condition can only
happen on an online checkpoint, as there are no backends running during a
shutdown checkpoint. The oldestActiveXid value of an online checkpoint is
only used when starting up a hot standby server, to determine the starting
point where pg_subtrans is initialized from. For the race condition to
happen, there must be no other XIDs in the proc array that would hold back
the oldest-active XID value, which means that the missed XID must be a top
transaction's XID. However, pg_subtrans is not used for top XIDs, so I
believe an off-by-one error is in fact inconsequential. Nevertheless, let's
fix it, as it's clearly wrong and the fix is simple.
This has been wrong ever since hot standby was introduced, so backport to
all supported versions.
Discussion: https://www.postgresql.org/message-id/[email protected]
M src/backend/storage/ipc/procarray.c
Fix ruleutils.c for domain-over-array cases, too.
commit : 75670ec373628378fac68fdf2748ffac18076321
author : Tom Lane <[email protected]>
date : Wed, 12 Jul 2017 18:00:04 -0400
committer: Tom Lane <[email protected]>
date : Wed, 12 Jul 2017 18:00:04 -0400
Further investigation shows that ruleutils isn't quite up to speed either
for cases where we have a domain-over-array: it needs to be prepared to
look past a CoerceToDomain at the top level of field and element
assignments, else it decompiles them incorrectly. Potentially this would
result in failure to dump/reload a rule, if it looked like the one in the
new test case. (I also added a test for EXPLAIN; that output isn't broken,
but clearly we need more test coverage here.)
Like commit b1cb32fb6, this bug is reachable in cases we already support,
so back-patch all the way.
M src/backend/utils/adt/ruleutils.c
M src/test/regress/expected/domain.out
M src/test/regress/sql/domain.sql
Reduce memory usage of tsvector type analyze function.
commit : 40ba61b447829a328963f5a868b291ecb24762d6
author : Heikki Linnakangas <[email protected]>
date : Wed, 12 Jul 2017 22:03:38 +0300
committer: Heikki Linnakangas <[email protected]>
date : Wed, 12 Jul 2017 22:03:38 +0300
compute_tsvector_stats() detoasted and kept in memory every tsvector value
in the sample, but that can be a lot of memory. The original bug report
described a case using over 10 gigabytes, with statistics target of 10000
(the maximum).
To fix, allocate a separate copy of just the lexemes that we keep around,
and free the detoasted tsvector values as we go. This adds some palloc/pfree
overhead, when you have a lot of distinct lexemes in the sample, but it's
better than running out of memory.
Fixes bug #14654 reported by James C. Reviewed by Tom Lane. Backport to
all supported versions.
Discussion: https://www.postgresql.org/message-id/[email protected]
M src/backend/tsearch/ts_typanalyze.c
Fix variable and type name in comment.
commit : c65ed13ce71f095ffd32c9bd88faf2773b72b38c
author : Heikki Linnakangas <[email protected]>
date : Wed, 12 Jul 2017 17:07:35 +0300
committer: Heikki Linnakangas <[email protected]>
date : Wed, 12 Jul 2017 17:07:35 +0300
Kyotaro Horiguchi
Discussion: https://www.postgresql.org/message-id/[email protected]
M src/backend/storage/ipc/standby.c
Remove unnecessary braces, to match the surrounding style.
commit : f4d71bdd1352add29f61fba067b9294d01b4d461
author : Heikki Linnakangas <[email protected]>
date : Wed, 12 Jul 2017 12:30:50 +0300
committer: Heikki Linnakangas <[email protected]>
date : Wed, 12 Jul 2017 12:30:50 +0300
Mostly in the new subscription-related commands. Backport the few that
were also present in older versions.
Thomas Munro
Discussion: https://www.postgresql.org/message-id/CAEepm=3CyW1QmXcXJXmqiJXtXzFDc8SvSfnxkEGD3Bkv2SrkeQ@mail.gmail.com
M src/bin/psql/tab-complete.c
Fix multiple assignments to a column of a domain type.
commit : 55204850a9de72ab0a7bc7b90131d46fad7a89cd
author : Tom Lane <[email protected]>
date : Tue, 11 Jul 2017 16:48:59 -0400
committer: Tom Lane <[email protected]>
date : Tue, 11 Jul 2017 16:48:59 -0400
We allow INSERT and UPDATE commands to assign to the same column more than
once, as long as the assignments are to subfields or elements rather than
the whole column. However, this failed when the target column was a domain
over array rather than plain array. Fix by teaching process_matched_tle()
to look through CoerceToDomain nodes, and add relevant test cases.
Also add a group of test cases exercising domains over array of composite.
It's doubtless accidental that CREATE DOMAIN allows this case while not
allowing straight domain over composite; but it does, so we'd better make
sure we don't break it. (I could not find any documentation mentioning
either side of that, so no doc changes.)
It's been like this for a long time, so back-patch to all supported
branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/rewrite/rewriteHandler.c
M src/test/regress/expected/domain.out
M src/test/regress/sql/domain.sql
On Windows, retry process creation if we fail to reserve shared memory.
commit : a4a590ee7913eb60e1832d64e73a81b394dd542c
author : Tom Lane <[email protected]>
date : Mon, 10 Jul 2017 11:00:09 -0400
committer: Tom Lane <[email protected]>
date : Mon, 10 Jul 2017 11:00:09 -0400
We've heard occasional reports of backend launch failing because
pgwin32_ReserveSharedMemoryRegion() fails, indicating that something
has already used that address space in the child process. It's not
very clear what, given that we disable ASLR in Windows builds, but
suspicion falls on antivirus products. It'd be better if we didn't
have to disable ASLR, anyway. So let's try to ameliorate the problem
by retrying the process launch after such a failure, up to 100 times.
Patch by me, based on previous work by Amit Kapila and others.
This is a longstanding issue, so back-patch to all supported branches.
Discussion: https://postgr.es/m/CAA4eK1+R6hSx6t_yvwtx+NRzneVp+MRqXAdGJZChcau8Uij-8g@mail.gmail.com
M src/backend/postmaster/postmaster.c
Doc: clarify wording about tool requirements in sourcerepo.sgml.
commit : b33faac521730bb00102167fdb4a9b856e35e010
author : Tom Lane <[email protected]>
date : Mon, 10 Jul 2017 00:08:19 -0400
committer: Tom Lane <[email protected]>
date : Mon, 10 Jul 2017 00:08:19 -0400
Original wording had confusingly vague antecedent for "they", so replace
that with a more repetitive but clearer formulation. In passing, make the
link to the installation requirements section more specific. Per gripe
from Martin Mai, though this is not the fix he initially proposed.
Discussion: https://postgr.es/m/CAN_NWRu-cWuNaiXUjV3m4H-riWURuPW=j21bSaLADs6rjjzXgQ@mail.gmail.com
M doc/src/sgml/sourcerepo.sgml
Treat clean shutdown of an SSL connection same as the non-SSL case.
commit : fb1110085b47cb243d60cc5f937fb9c3f47cd365
author : Heikki Linnakangas <[email protected]>
date : Mon, 3 Jul 2017 14:51:51 +0300
committer: Heikki Linnakangas <[email protected]>
date : Mon, 3 Jul 2017 14:51:51 +0300
If the client closes an SSL connection, treat it the same as EOF on a
non-SSL connection. In particular, don't write a message in the log about
that.
Michael Paquier.
Discussion: https://www.postgresql.org/message-id/CAB7nPqSfyVV42Q2acFo%[email protected]
M src/backend/libpq/be-secure.c
Second try at fixing tcp_keepalives_idle option on Solaris.
commit : 5e7447132000911d604bd242fb93f1593b65d32b
author : Tom Lane <[email protected]>
date : Wed, 28 Jun 2017 12:30:16 -0400
committer: Tom Lane <[email protected]>
date : Wed, 28 Jun 2017 12:30:16 -0400
Buildfarm evidence shows that TCP_KEEPALIVE_THRESHOLD doesn't exist
after all on Solaris < 11. This means we need to take positive action to
prevent the TCP_KEEPALIVE code path from being taken on that platform.
I've chosen to limit it with "&& defined(__darwin__)", since it's unclear
that anyone else would follow Apple's precedent of spelling the symbol
that way.
Also, follow a suggestion from Michael Paquier of eliminating code
duplication by defining a couple of intermediate symbols for the
socket option.
In passing, make some effort to reduce the number of translatable messages
by replacing "setsockopt(foo) failed" with "setsockopt(%s) failed", etc,
throughout the affected files. And update relevant documentation so
that it doesn't claim to provide an exhaustive list of the possible
socket option names.
Like the previous commit (f0256c774), back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
M doc/src/sgml/config.sgml
M doc/src/sgml/libpq.sgml
M src/backend/libpq/pqcomm.c
M src/interfaces/libpq/fe-connect.c
Support tcp_keepalives_idle option on Solaris.
commit : 6ccab9242b349ce2e3fd364b01e4e53bb5205828
author : Tom Lane <[email protected]>
date : Tue, 27 Jun 2017 18:47:57 -0400
committer: Tom Lane <[email protected]>
date : Tue, 27 Jun 2017 18:47:57 -0400
Turns out that the socket option for this is named TCP_KEEPALIVE_THRESHOLD,
at least according to the tcp(7P) man page for Solaris 11. (But since that
text refers to "SunOS", it's likely pretty ancient.) It appears that the
symbol TCP_KEEPALIVE does get defined on that platform, but it doesn't
seem to represent a valid protocol-level socket option. This leads to
bleats in the postmaster log, and no tcp_keepalives_idle functionality.
Per bug #14720 from Andrey Lizenko, as well as an earlier report from
Dhiraj Chawla that nobody had followed up on. The issue's been there
since we added the TCP_KEEPALIVE code path in commit 5acd417c8, so
back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/libpq/pqcomm.c
M src/interfaces/libpq/fe-connect.c
Don't lose walreceiver start requests due to race condition in postmaster.
commit : e96adaacdc8fba490263265b162a2670c6d62c3a
author : Tom Lane <[email protected]>
date : Mon, 26 Jun 2017 17:31:56 -0400
committer: Tom Lane <[email protected]>
date : Mon, 26 Jun 2017 17:31:56 -0400
When a walreceiver dies, the startup process will notice that and send
a PMSIGNAL_START_WALRECEIVER signal to the postmaster, asking for a new
walreceiver to be launched. There's a race condition, which at least
in HEAD is very easy to hit, whereby the postmaster might see that
signal before it processes the SIGCHLD from the walreceiver process.
In that situation, sigusr1_handler() just dropped the start request
on the floor, reasoning that it must be redundant. Eventually, after
10 seconds (WALRCV_STARTUP_TIMEOUT), the startup process would make a
fresh request --- but that's a long time if the connection could have
been re-established almost immediately.
Fix it by setting a state flag inside the postmaster that we won't
clear until we do launch a walreceiver. In cases where that results
in an extra walreceiver launch, it's up to the walreceiver to realize
it's unwanted and go away --- but we have, and need, that logic anyway
for the opposite race case.
I came across this through investigating unexpected delays in the
src/test/recovery TAP tests: it manifests there in test cases where
a master server is stopped and restarted while leaving streaming
slaves active.
This logic has been broken all along, so back-patch to all supported
branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/postmaster/postmaster.c
Ignore old stats file timestamps when starting the stats collector.
commit : 439b6363d83a3fbd285f5426a863d87bb33a6ed6
author : Tom Lane <[email protected]>
date : Mon, 26 Jun 2017 16:17:06 -0400
committer: Tom Lane <[email protected]>
date : Mon, 26 Jun 2017 16:17:06 -0400
The stats collector disregards inquiry messages that bear a cutoff_time
before when it last wrote the relevant stats file. That's fine, but at
startup when it reads the "permanent" stats files, it absorbed their
timestamps as if they were the times at which the corresponding temporary
stats files had been written. In reality, of course, there's no data
out there at all. This led to disregarding inquiry messages soon after
startup if the postmaster had been shut down and restarted within less
than PGSTAT_STAT_INTERVAL; which is a pretty common scenario, both for
testing and in the field. Requesting backends would hang for 10 seconds
and then report failure to read statistics, unless they got bailed out
by some other backend coming along and making a newer request within
that interval.
I came across this through investigating unexpected delays in the
src/test/recovery TAP tests: it manifests there because the autovacuum
launcher hangs for 10 seconds when it can't get statistics at startup,
thus preventing a second shutdown from occurring promptly. We might
want to do some things in the autovac code to make it less prone to
getting stuck that way, but this change is a good bug fix regardless.
In passing, also fix pgstat_read_statsfiles() to ensure that it
re-zeroes its global stats variables if they are corrupted by a
short read from the stats file. (Other reads in that function
go into temp variables, so that the issue doesn't arise.)
This has been broken since we created the separation between permanent
and temporary stats files in 8.4, so back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/postmaster/pgstat.c
Fix possibility of creating a "phantom" segment after promotion.
commit : 81bf7b5b1e4b33a5c6396d2ff6157f74c05b20c8
author : Andres Freund <[email protected]>
date : Wed, 21 Jun 2017 13:51:40 -0700
committer: Andres Freund <[email protected]>
date : Wed, 21 Jun 2017 13:51:40 -0700
When promoting a standby just after a XLOG_SWITCH record was replayed,
and next segment(s) are already are locally available (via walsender,
restore_command + trigger/recovery target), that segment could
accidentally be recycled onto the past of the new timeline. Later
checkpointer would create a .ready file for it, assuming there was an
error during creation, and it would get archived. That causes trouble
if another standby is later brought up from a basebackup from before
the timeline creation, because it would try to read the
segment, because XLogFileReadAnyTLI just tries all possible timelines,
which doesn't have valid contents. Thus replay would fail.
The problem, if already occurred, can be fixed by removing the segment
and/or having restore_command filter it out.
The reason for the creation of such "phantom" segments was, that after
an XLOG_SWITCH record the EndOfLog variable points to the beginning of
the next segment, and RemoveXlogFile() used XLByteToPrevSeg().
Normally RemoveXlogFile() doing so is harmless, because the last
segment will still exist preventing InstallXLogFileSegment() from
causing harm, but just after promotion there's no previous segment on
the new timeline.
Fix that by using XLByteToSeg() instead of XLByteToPrevSeg().
Author: Andres Freund
Reported-By: Greg Burek
Discussion: https://postgr.es/m/[email protected]
Backpatch: 9.2-, bug older than all supported versions
M src/backend/access/transam/xlog.c
pg_upgrade: start/stop new server after pg_resetwal
commit : 65beccae51fc0bc51cd53651f36b7486902869fb
author : Bruce Momjian <[email protected]>
date : Tue, 20 Jun 2017 13:20:02 -0400
committer: Bruce Momjian <[email protected]>
date : Tue, 20 Jun 2017 13:20:02 -0400
When commit 0f33a719fdbb5d8c43839ea0d2c90cd03e2af2d2 removed the
instructions to start/stop the new cluster before running rsync, it was
now possible for pg_resetwal/pg_resetxlog to leave the final WAL record
at wal_level=minimum, preventing upgraded standby servers from
reconnecting.
This patch fixes that by having pg_upgrade unconditionally start/stop
the new cluster after pg_resetwal/pg_resetxlog has run.
Backpatch through 9.2 since, though the instructions were added in PG
9.5, they worked all the way back to 9.2.
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: 9.2
M contrib/pg_upgrade/check.c
M contrib/pg_upgrade/pg_upgrade.c
M contrib/pg_upgrade/pg_upgrade.h
On Windows, make pg_dump use binary mode for compressed plain text output.
commit : c10cbf77aef264495e1b78fe39181ea573bd6656
author : Tom Lane <[email protected]>
date : Mon, 19 Jun 2017 11:02:45 -0400
committer: Tom Lane <[email protected]>
date : Mon, 19 Jun 2017 11:02:45 -0400
The combination of -Z -Fp and output to stdout resulted in corrupted
output data, because we left stdout in text mode, resulting in newline
conversion being done on the compressed stream. Switch stdout to binary
mode for this case, at the same place where we do it for non-text output
formats.
Report and patch by Kuntal Ghosh, tested by Ashutosh Sharma and Neha
Sharma. Back-patch to all supported branches.
Discussion: https://postgr.es/m/CAGz5QCJPvbBjXAmJuGx1B_41yVCetAJhp7rtaDf7XQGWuB1GSw@mail.gmail.com
M src/bin/pg_dump/pg_backup_archiver.c
Fix dependency, when changing a function's argument/return type.
commit : ac93a78b0e51b69bfccd7b548da4f2d4ebf7cf93
author : Heikki Linnakangas <[email protected]>
date : Thu, 15 Jun 2017 10:42:10 +0300
committer: Heikki Linnakangas <[email protected]>
date : Thu, 15 Jun 2017 10:42:10 +0300
When a new base type is created using the old-style procedure of first
creating the input/output functions with "opaque" in place of the base
type, the "opaque" argument/return type is changed to the final base type,
on CREATE TYPE. However, we did not create a pg_depend record when doing
that, so the functions were left not depending on the type.
Fixes bug #14706, reported by Karen Huddleston.
Discussion: https://www.postgresql.org/message-id/[email protected]
M src/backend/commands/functioncmds.c
M src/test/regress/expected/create_type.out
M src/test/regress/sql/create_type.sql
Fix low-probability leaks of PGresult objects in the backend.
commit : e6fee616d47f2ce661ccba4c663f54af41548698
author : Tom Lane <[email protected]>
date : Thu, 15 Jun 2017 15:03:39 -0400
committer: Tom Lane <[email protected]>
date : Thu, 15 Jun 2017 15:03:39 -0400
We had three occurrences of essentially the same coding pattern
wherein we tried to retrieve a query result from a libpq connection
without blocking. In the case where PQconsumeInput failed (typically
indicating a lost connection), all three loops simply gave up and
returned, forgetting to clear any previously-collected PGresult
object. Since those are malloc'd not palloc'd, the oversight results
in a process-lifespan memory leak.
One instance, in libpqwalreceiver, is of little significance because
the walreceiver process would just quit anyway if its connection fails.
But we might as well fix it.
The other two instances, in postgres_fdw, are somewhat more worrisome
because at least in principle the scenario could be repeated, allowing
the amount of memory leaked to build up to something worth worrying
about. Moreover, in these cases the loops contain CHECK_FOR_INTERRUPTS
calls, as well as other calls that could potentially elog(ERROR),
providing another way to exit without having cleared the PGresult.
Here we need to add PG_TRY logic similar to what exists in quite a
few other places in postgres_fdw.
Coverity noted the libpqwalreceiver bug; I found the other two cases
by checking all calls of PQconsumeInput.
Back-patch to all supported versions as appropriate (9.2 lacks
postgres_fdw, so this is really quite unexciting for that branch).
Discussion: https://postgr.es/m/[email protected]
M src/backend/replication/libpqwalreceiver/libpqwalreceiver.c
Fix document bug regarding read only transactions.
commit : 1fe10463d9bd38d20b5c3c9356fc07ae9c3b6828
author : Tatsuo Ishii <[email protected]>
date : Thu, 15 Jun 2017 10:01:39 +0900
committer: Tatsuo Ishii <[email protected]>
date : Thu, 15 Jun 2017 10:01:39 +0900
It was explained that read only transactions (not in standby) allow to
update sequences. This had been wrong since the commit:
05d8a561ff85db1545f5768fe8d8dc9d99ad2ef7
Discussion: https://www.postgresql.org/message-id/20170614.110826.425627939780392324.t-ishii%40sraoss.co.jp
M doc/src/sgml/high-availability.sgml
Fix docs to not claim ECPG's SET CONNECTION is not thread-aware.
commit : ccd717a2e8a5b59f5117ce3dc6e28f71bda9a030
author : Michael Meskes <[email protected]>
date : Tue, 6 Jun 2017 12:19:28 +0200
committer: Michael Meskes <[email protected]>
date : Tue, 6 Jun 2017 12:19:28 +0200
Changed by: Tsunakawa, Takayuki <[email protected]>
M doc/src/sgml/ecpg.sgml
Unify SIGHUP handling between normal and walsender backends.
commit : 133b1920c5b8647c67cf2e017b50266ba71c788c
author : Andres Freund <[email protected]>
date : Mon, 5 Jun 2017 18:53:42 -0700
committer: Andres Freund <[email protected]>
date : Mon, 5 Jun 2017 18:53:42 -0700
Because walsender and normal backends share the same main loop it's
problematic to have two different flag variables, set in signal
handlers, indicating a pending configuration reload. Only certain
walsender commands reach code paths checking for the
variable (START_[LOGICAL_]REPLICATION, CREATE_REPLICATION_SLOT
... LOGICAL, notably not base backups).
This is a bug present since the introduction of walsender, but has
gotten worse in releases since then which allow walsender to do more.
A later patch, not slated for v10, will similarly unify SIGHUP
handling in other types of processes as well.
Author: Petr Jelinek, Andres Freund
Reviewed-By: Michael Paquier
Discussion: https://postgr.es/m/[email protected]
Backpatch: 9.2-, bug is present since 9.0
M src/backend/replication/walsender.c
M src/backend/tcop/postgres.c
M src/backend/utils/init/globals.c
M src/include/miscadmin.h
Fix thinko in previous openssl change
commit : f964a7c5ab9f8af5cf496f650ce162f7e3d34714
author : Andrew Dunstan <[email protected]>
date : Mon, 5 Jun 2017 20:38:46 -0400
committer: Andrew Dunstan <[email protected]>
date : Mon, 5 Jun 2017 20:38:46 -0400
M src/tools/msvc/Solution.pm
Find openssl lib files in right directory for MSVC
commit : 545dc4d2166b5043db3dd013ead877d1ed6d2796
author : Andrew Dunstan <[email protected]>
date : Mon, 5 Jun 2017 14:24:42 -0400
committer: Andrew Dunstan <[email protected]>
date : Mon, 5 Jun 2017 14:24:42 -0400
Some openssl builds put their lib files in a VC subdirectory, others do
not. Cater for both cases.
Backpatch to all live branches.
From an offline discussion with Leonardo Cecchi.
M src/tools/msvc/Solution.pm
Always use -fPIC, not -fpic, when building shared libraries with gcc.
commit : a378b9bc287d58caf8c51485362408b01c566955
author : Tom Lane <[email protected]>
date : Thu, 1 Jun 2017 13:32:56 -0400
committer: Tom Lane <[email protected]>
date : Thu, 1 Jun 2017 13:32:56 -0400
On some platforms, -fpic fails for sufficiently large shared libraries.
We've mostly not hit that boundary yet, but there are some extensions
such as Citus and pglogical where it's becoming a problem. A bit of
research suggests that the penalty for -fPIC is small, in the
single-digit-percentage range --- and there's none at all on popular
platforms such as x86_64. So let's just default to -fPIC everywhere
and provide one less thing for extension developers to worry about.
Per complaint from Christoph Berg. Back-patch to all supported branches.
(I did not bother to touch the recently-removed Makefiles for sco and
unixware in the back branches, though. We'd have no way to test that
it doesn't break anything on those platforms.)
Discussion: https://postgr.es/m/[email protected]
M doc/src/sgml/dfunc.sgml
M src/makefiles/Makefile.linux
M src/makefiles/Makefile.netbsd
M src/makefiles/Makefile.openbsd
Try to ensure that stats collector's receive buffer size is at least 100KB.
commit : 364100e0bf85d2de1fa4078f9a74a4cab8366e25
author : Tom Lane <[email protected]>
date : Mon, 29 May 2017 20:27:45 -0400
committer: Tom Lane <[email protected]>
date : Mon, 29 May 2017 20:27:45 -0400
Back-patch of commit 8b0b6303e991079726e83d17401405e94da11564.
Discussion: https://postgr.es/m/[email protected]
M src/backend/postmaster/pgstat.c
Prevent running pg_resetwal/pg_resetxlog against wrong-version data dirs.
commit : 6b48f06da85ecf3daadcf73c5c9872f126573ef8
author : Tom Lane <[email protected]>
date : Mon, 29 May 2017 17:08:16 -0400
committer: Tom Lane <[email protected]>
date : Mon, 29 May 2017 17:08:16 -0400
pg_resetwal (formerly pg_resetxlog) doesn't insist on finding a matching
version number in pg_control, and that seems like an important thing to
preserve since recovering from corrupt pg_control is a prime reason to
need to run it. However, that means you can try to run it against a
data directory of a different major version, which is at best useless
and at worst disastrous. So as to provide some protection against that
type of pilot error, inspect PG_VERSION at startup and refuse to do
anything if it doesn't match. PG_VERSION is read-only after initdb,
so it's unlikely to get corrupted, and even if it were corrupted it would
be easy to fix by hand.
This hazard has been there all along, so back-patch to all supported
branches.
Michael Paquier, with some kibitzing by me
Discussion: https://postgr.es/m/[email protected]
M doc/src/sgml/ref/pg_resetxlog.sgml
M src/bin/pg_resetxlog/pg_resetxlog.c
Allow NumericOnly to be "+ FCONST".
commit : a6536067095637a885e6d18cb8e0c971922fa662
author : Tom Lane <[email protected]>
date : Mon, 29 May 2017 15:19:07 -0400
committer: Tom Lane <[email protected]>
date : Mon, 29 May 2017 15:19:07 -0400
The NumericOnly grammar production accepted ICONST, + ICONST, - ICONST,
FCONST, and - FCONST, but for some reason not + FCONST. This led to
strange inconsistencies like
regression=# set random_page_cost = +4;
SET
regression=# set random_page_cost = 4000000000;
SET
regression=# set random_page_cost = +4000000000;
ERROR: syntax error at or near "4000000000"
(because 4000000000 is too large to be an ICONST). While there's
no actual functional reason to need to write a "+", if we allow
it for integers it seems like we should allow it for numerics too.
It's been like that forever, so back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/parser/gram.y
Move autogenerated array types out of the way during ALTER ... RENAME.
commit : da91656866f7204456ce7cc112446677f1455ef8
author : Tom Lane <[email protected]>
date : Fri, 26 May 2017 15:16:59 -0400
committer: Tom Lane <[email protected]>
date : Fri, 26 May 2017 15:16:59 -0400
Commit 9aa3c782c added code to allow CREATE TABLE/CREATE TYPE to not fail
when the desired type name conflicts with an autogenerated array type, by
dint of renaming the array type out of the way. But I (tgl) overlooked
that the same case arises in ALTER TABLE/TYPE RENAME. Fix that too.
Back-patch to all supported branches.
Report and patch by Vik Fearing, modified a bit by me
Discussion: https://postgr.es/m/[email protected]
M src/backend/catalog/pg_type.c
M src/test/regress/expected/alter_table.out
M src/test/regress/sql/alter_table.sql
Fix pg_dump to not emit invalid SQL for an empty operator class.
commit : f62e1eff524ab9927cbadda07060cd0b30b1fc72
author : Tom Lane <[email protected]>
date : Fri, 26 May 2017 12:51:06 -0400
committer: Tom Lane <[email protected]>
date : Fri, 26 May 2017 12:51:06 -0400
If an operator class has no operators or functions, and doesn't need
a STORAGE clause, we emitted "CREATE OPERATOR CLASS ... AS ;" which
is syntactically invalid. Fix by forcing a STORAGE clause to be
emitted anyway in this case.
(At some point we might consider changing the grammar to allow CREATE
OPERATOR CLASS without an opclass_item_list. But probably we'd want to
omit the AS in that case, so that wouldn't fix this pg_dump issue anyway.)
It's been like this all along, so back-patch to all supported branches.
Daniel Gustafsson, tweaked by me to avoid a dangling-pointer bug
Discussion: https://postgr.es/m/[email protected]
M src/bin/pg_dump/pg_dump.c
Remove docs mention of PGREALM variable
commit : 8f6396470a9d0308e4f2832eb8ba313e5aaef57d
author : Magnus Hagander <[email protected]>
date : Fri, 26 May 2017 10:58:15 -0400
committer: Magnus Hagander <[email protected]>
date : Fri, 26 May 2017 10:58:15 -0400
This variable was only used with Kerberos v4. That support was removed
in 2005, but we forgot to remove the documentation.
Noted by Shinichi Matsuda
M doc/src/sgml/libpq.sgml
Tighten checks for whitespace in functions that parse identifiers etc.
commit : a047270d54733f1a4db81fb9bf1fc8d4a9fa1fb4
author : Tom Lane <[email protected]>
date : Wed, 24 May 2017 15:28:35 -0400
committer: Tom Lane <[email protected]>
date : Wed, 24 May 2017 15:28:35 -0400
This patch replaces isspace() calls with scanner_isspace() in functions
that are likely to be presented with non-ASCII input. isspace() has
the small advantage that it will correctly recognize no-break space
in single-byte encodings (such as LATIN1); but it cannot work successfully
for any multibyte character, and depending on platform it might return
false positive results for some fragments of multibyte characters. That's
disastrous for functions that are trying to discard whitespace between
valid strings, as noted in bug #14662 from Justin Muise. Even treating
no-break space as whitespace is pretty questionable for the usages touched
here, because the core scanner would think it is an identifier character.
Affected functions are parse_ident(), parseNameAndArgTypes (underlying
regprocedurein() and siblings), SplitIdentifierString (used for parsing
GUCs and options that are qualified names or lists of names), and
SplitDirectoriesString (used for parsing GUCs that are lists of
directories).
All the functions adjusted here are parsing SQL identifiers and similar
constructs, so it's reasonable to insist that their definition of
whitespace match the core scanner. So we can hope that this won't cause
many backwards-compatibility problems. I've left alone isspace() calls
in places that aren't really expecting any non-ASCII input characters,
such as float8in().
Back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
M src/backend/utils/adt/regproc.c
M src/backend/utils/adt/varlena.c
Update URLs in pgindent source and README
commit : 8a294d1744be395c9315388ae5bb4b52cbbe386d
author : Magnus Hagander <[email protected]>
date : Tue, 23 May 2017 14:04:53 -0400
committer: Magnus Hagander <[email protected]>
date : Tue, 23 May 2017 14:04:53 -0400
Website and buildfarm is https, not http, and the ftp protocol will be
shut down shortly.
M src/tools/pgindent/README
Fix precision and rounding issues in money multiplication and division.
commit : 798d2321eceb4c0b2f1a4a7c16bbd011a7a9083b
author : Tom Lane <[email protected]>
date : Sun, 21 May 2017 13:05:17 -0400
committer: Tom Lane <[email protected]>
date : Sun, 21 May 2017 13:05:17 -0400
The cash_div_intX functions applied rint() to the result of the division.
That's not merely useless (because the result is already an integer) but
it causes precision loss for values larger than 2^52 or so, because of
the forced conversion to float8.
On the other hand, the cash_mul_fltX functions neglected to apply rint() to
their multiplication results, thus possibly causing off-by-one outputs.
Per C standard, arithmetic between any integral value and a float value is
performed in float format. Thus, cash_mul_flt4 and cash_div_flt4 produced
answers good to only about six digits, even when the float value is exact.
We can improve matters noticeably by widening the float inputs to double.
(It's tempting to consider using "long double" arithmetic if available,
but that's probably too much of a stretch for a back-patched fix.)
Also, document that cash_div_intX operators truncate rather than round.
Per bug #14663 from Richard Pistole. Back-patch to all supported branches.
Discussion: https://postgr.es/m/[email protected]
M doc/src/sgml/datatype.sgml
M src/backend/utils/adt/cash.c
M src/test/regress/expected/money.out
M src/test/regress/sql/money.sql
Change documentation references to PG website to use https: not http:
commit : d22203ff1fe4e4fd5eafaa06fdffcae5513b07d5
author : Tom Lane <[email protected]>
date : Sat, 20 May 2017 21:50:47 -0400
committer: Tom Lane <[email protected]>
date : Sat, 20 May 2017 21:50:47 -0400
This is more secure, and saves a redirect since we no longer accept
plain HTTP connections on the website.
References in code comments should probably be updated too, but
that doesn't seem to need back-patching, whereas this does.
Also, in the 9.2 branch, remove suggestion that you can get the
source code via FTP, since that service will be shut down soon.
Daniel Gustafsson, with a few additional changes by me
Discussion: https://postgr.es/m/[email protected]
M HISTORY
M README
M README.git
M doc/TODO
M doc/bug.template
M doc/src/sgml/acronyms.sgml
M doc/src/sgml/advanced.sgml
M doc/src/sgml/contacts.sgml
M doc/src/sgml/external-projects.sgml
M doc/src/sgml/info.sgml
M doc/src/sgml/installation.sgml
M doc/src/sgml/problems.sgml
M doc/src/sgml/release.sgml
M doc/src/sgml/sepgsql.sgml
M doc/src/sgml/sourcerepo.sgml
Make psql handle EOF during COPY FROM STDIN properly on all platforms.
commit : 07477130e2b5b23fe627d685ec3f0302f4165101
author : Tom Lane <[email protected]>
date : Wed, 17 May 2017 12:24:19 -0400
committer: Tom Lane <[email protected]>
date : Wed, 17 May 2017 12:24:19 -0400
When stdin is a terminal, it's possible to end a COPY FROM STDIN with
a keyboard EOF signal (typically control-D), and then keep on issuing
SQL commands. One would expect another COPY FROM STDIN to work as well,
but on some platforms it did not. This turns out to be because we were
not resetting the stream's feof() flag, and BSD-ish versions of fread()
and fgets() won't attempt to read more data if that's set.
The misbehavior is observed on BSDen (including macOS), but not Linux,
Windows, or SysV-ish Unixen, which makes this a portability bug not
just a missing feature.
Add a clearerr() call to fix the behavior, and improve the prompt that's
issued when copying from a TTY to mention that EOF signals work.
It's been like this forever, so back-patch to all supported branches.
Thomas Munro
Discussion: https://postgr.es/m/CAEepm=0MCGfYf=JAMiYhO6JPtv9-3ZfBo8fcGeCZ8oMzaw+Z+Q@mail.gmail.com
M src/bin/psql/copy.c
Fix new warnings from GCC 7
commit : de973f6e75e05c532d78d4ee98d55322ab166529
author : Peter Eisentraut <[email protected]>
date : Tue, 11 Apr 2017 14:13:31 -0400
committer: Peter Eisentraut <[email protected]>
date : Tue, 11 Apr 2017 14:13:31 -0400
This addresses the new warning types -Wformat-truncation
-Wformat-overflow that are part of -Wall, via -Wformat, in GCC 7.
M contrib/pg_archivecleanup/pg_archivecleanup.c
M contrib/pg_standby/pg_standby.c
M contrib/pg_upgrade/pg_upgrade.h
M src/backend/access/transam/xlog.c
M src/backend/replication/basebackup.c
M src/backend/storage/file/copydir.c
M src/backend/storage/file/fd.c
M src/backend/storage/file/reinit.c
M src/backend/utils/adt/dbsize.c
M src/backend/utils/cache/relcache.c
M src/backend/utils/error/elog.c
M src/backend/utils/time/snapmgr.c
M src/bin/pg_basebackup/pg_receivexlog.c
M src/bin/pg_resetxlog/pg_resetxlog.c
M src/timezone/pgtz.c
doc: update markup for release note "release date" block
commit : b5fc98aedf513780b9b61c904cfcb87a7d02fbf1
author : Bruce Momjian <[email protected]>
date : Fri, 12 May 2017 18:31:54 -0400
committer: Bruce Momjian <[email protected]>
date : Fri, 12 May 2017 18:31:54 -0400
This has to be backpatched to all supported releases so release markup
added to HEAD and copied to back branches matches the existing markup.
Reported-by: Peter Eisentraut
Discussion: [email protected]
Author: initial patch and sample markup by Peter Eisentraut
Backpatch-through: 9.2
M doc/src/sgml/release-7.4.sgml
M doc/src/sgml/release-8.0.sgml
M doc/src/sgml/release-8.1.sgml
M doc/src/sgml/release-8.2.sgml
M doc/src/sgml/release-8.3.sgml
M doc/src/sgml/release-8.4.sgml
M doc/src/sgml/release-9.0.sgml
M doc/src/sgml/release-9.1.sgml
M doc/src/sgml/release-9.2.sgml
M doc/src/sgml/release-old.sgml
Add libxml2 include path for MSVC builds
commit : 614f83c122b029edb13b01fbc62a518f2ffd1254
author : Andrew Dunstan <[email protected]>
date : Fri, 12 May 2017 10:17:54 -0400
committer: Andrew Dunstan <[email protected]>
date : Fri, 12 May 2017 10:17:54 -0400
On Unix this path is detected via the use of xml2-config, but that's not
available on Windows. This means that users building with libxml2 will
no longer need to move things around from the standard libxml2
installation for MSVC builds.
Backpatch to all live branches.
M src/tools/msvc/Solution.pm
psql: Add missing translation markers
commit : 0cdf2057c8af4d13d652a902b8d78f7b1c810ea5
author : Peter Eisentraut <[email protected]>
date : Wed, 10 May 2017 10:14:49 -0400
committer: Peter Eisentraut <[email protected]>
date : Wed, 10 May 2017 10:14:49 -0400
M src/bin/psql/describe.c