pgsql: Change the naming convention for extension files to use double d - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Change the naming convention for extension files to use double d
Date
Msg-id E1PopXH-0003pn-Ib@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Change the naming convention for extension files to use double dashes.

This allows us to have an unambiguous rule for deconstructing the names
of script files and secondary control files, without having to forbid
extension and version names from containing any dashes.  We do have to
forbid them from containing double dashes or leading/trailing dashes,
but neither restriction is likely to bother anyone in practice.
Per discussion, this seems like a better solution overall than the
original design.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/27d5d7ab10086d833e3df251951cf63c392b8bca

Modified Files
--------------
doc/src/sgml/extend.sgml         |   28 +++++----
src/backend/commands/extension.c |  124 ++++++++++++++++++++++++++++++--------
2 files changed, 113 insertions(+), 39 deletions(-)


pgsql-committers by date:

Previous
From: Bruce Momjian
Date:
Subject: pgsql: Clarify documentation for libpq's PQescapeBytea to mention the n
Next
From: Tom Lane
Date:
Subject: pgsql: Convert contrib modules to use the extension facility.