mirror of
https://github.com/postgres/postgres.git
synced 2025-11-25 12:03:53 +03:00
Convert SGML IDs to lower case
IDs in SGML are case insensitive, and we have accumulated a mix of upper and lower case IDs, including different variants of the same ID. In XML, these will be case sensitive, so we need to fix up those differences. Going to all lower case seems most straightforward, and the current build process already makes all anchors and lower case anyway during the SGML->XML conversion, so this doesn't create any difference in the output right now. A future XML-only build process would, however, maintain any mixed case ID spellings in the output, so that is another reason to clean this up beforehand. Author: Alexander Lakhin <exclusion@gmail.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<!-- doc/src/sgml/ref/create_foreign_table.sgml -->
|
||||
|
||||
<refentry id="SQL-CREATEFOREIGNTABLE">
|
||||
<refentry id="sql-createforeigntable">
|
||||
<indexterm zone="sql-createforeigntable">
|
||||
<primary>CREATE FOREIGN TABLE</primary>
|
||||
</indexterm>
|
||||
@@ -51,7 +51,7 @@ CHECK ( <replaceable class="parameter">expression</replaceable> ) [ NO INHERIT ]
|
||||
</synopsis>
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1 id="SQL-CREATEFOREIGNTABLE-description">
|
||||
<refsect1 id="sql-createforeigntable-description">
|
||||
<title>Description</title>
|
||||
|
||||
<para>
|
||||
@@ -252,7 +252,7 @@ CHECK ( <replaceable class="parameter">expression</replaceable> ) [ NO INHERIT ]
|
||||
<para>
|
||||
The name of an existing foreign server to use for the foreign table.
|
||||
For details on defining a server, see <xref
|
||||
linkend="SQL-CREATESERVER">.
|
||||
linkend="sql-createserver">.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@@ -310,7 +310,7 @@ CHECK ( <replaceable class="parameter">expression</replaceable> ) [ NO INHERIT ]
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 id="SQL-CREATEFOREIGNTABLE-examples">
|
||||
<refsect1 id="sql-createforeigntable-examples">
|
||||
<title>Examples</title>
|
||||
|
||||
<para>
|
||||
@@ -342,8 +342,8 @@ CREATE FOREIGN TABLE measurement_y2016m07
|
||||
|
||||
</refsect1>
|
||||
|
||||
<refsect1 id="SQL-CREATEFOREIGNTABLE-compatibility">
|
||||
<title id="SQL-CREATEFOREIGNTABLE-compatibility-title">Compatibility</title>
|
||||
<refsect1 id="sql-createforeigntable-compatibility">
|
||||
<title id="sql-createforeigntable-compatibility-title">Compatibility</title>
|
||||
|
||||
<para>
|
||||
The <command>CREATE FOREIGN TABLE</command> command largely conforms to the
|
||||
|
||||
Reference in New Issue
Block a user