Re: PATCH: Don't downcase filepath/filename while loading libraries
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Michael Paquier <michael.paquier@gmail.com>
Cc: QL Zhuo <zhuo.dev@gmail.com>,
PostgreSQL mailing lists <pgsql-hackers@postgresql.org>
Date: 2017-06-16T04:01:02Z
Lists: pgsql-hackers
Michael Paquier <michael.paquier@gmail.com> writes: > On Fri, Jun 16, 2017 at 11:04 AM, QL Zhuo <zhuo.dev@gmail.com> wrote: >> After few digging, I found there's a wrong use of `SplitIdentifierString` in >> function `load_libraries` in /src/backend/utils/init/miscinit.c, and the >> attached patch fixes it. > That's a good catch. All the other callers of SplitIdentifierString() > don't handle a list of directories. This requires a back-patch. (1) As is, I think the patch leaks memory. SplitDirectoriesString's API is not identical to SplitIdentifierString's. (2) My inclination would be not to back-patch. This change could break configurations that worked before, and the lack of prior complaints says that not many people are having a problem with it. regards, tom lane
Commits
-
Upgrade documentation connected with shared_preload_libraries et al.
- ba63dbd9edc0 10.0 landed
-
Don't downcase entries within shared_preload_libraries et al.
- a69dfe5f40f7 10.0 landed