mirror of
https://github.com/postgres/postgres.git
synced 2025-08-22 21:53:06 +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:
@@ -3,7 +3,7 @@ doc/src/sgml/ref/create_table.sgml
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
<refentry id="SQL-CREATETABLE">
|
||||
<refentry id="sql-createtable">
|
||||
<indexterm zone="sql-createtable">
|
||||
<primary>CREATE TABLE</primary>
|
||||
</indexterm>
|
||||
@@ -102,7 +102,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
|
||||
</refsynopsisdiv>
|
||||
|
||||
<refsect1 id="SQL-CREATETABLE-description">
|
||||
<refsect1 id="sql-createtable-description">
|
||||
<title>Description</title>
|
||||
|
||||
<para>
|
||||
@@ -157,7 +157,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
|
||||
<variablelist>
|
||||
|
||||
<varlistentry id="SQL-CREATETABLE-TEMPORARY">
|
||||
<varlistentry id="sql-createtable-temporary">
|
||||
<term><literal>TEMPORARY</literal> or <literal>TEMP</literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
@@ -191,7 +191,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="SQL-CREATETABLE-UNLOGGED">
|
||||
<varlistentry id="sql-createtable-unlogged">
|
||||
<term><literal>UNLOGGED</literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
@@ -249,7 +249,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="SQL-CREATETABLE-PARTITION">
|
||||
<varlistentry id="sql-createtable-partition">
|
||||
<term><literal>PARTITION OF <replaceable class="parameter">parent_table</replaceable> { FOR VALUES <replaceable class="parameter">partition_bound_spec</replaceable> | DEFAULT }</literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
@@ -783,7 +783,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry id="SQL-CREATETABLE-EXCLUDE">
|
||||
<varlistentry id="sql-createtable-exclude">
|
||||
<term><literal>EXCLUDE [ USING <replaceable class="parameter">index_method</replaceable> ] ( <replaceable class="parameter">exclude_element</replaceable> WITH <replaceable class="parameter">operator</replaceable> [, ... ] ) <replaceable class="parameter">index_parameters</replaceable> [ WHERE ( <replaceable class="parameter">predicate</replaceable> ) ]</literal></term>
|
||||
<listitem>
|
||||
<para>
|
||||
@@ -1120,8 +1120,8 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
|
||||
</variablelist>
|
||||
|
||||
<refsect2 id="SQL-CREATETABLE-storage-parameters">
|
||||
<title id="SQL-CREATETABLE-storage-parameters-title">Storage Parameters</title>
|
||||
<refsect2 id="sql-createtable-storage-parameters">
|
||||
<title id="sql-createtable-storage-parameters-title">Storage Parameters</title>
|
||||
|
||||
<indexterm zone="sql-createtable-storage-parameters">
|
||||
<primary>storage parameters</primary>
|
||||
@@ -1132,7 +1132,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
for tables, and for indexes associated with a <literal>UNIQUE</literal>,
|
||||
<literal>PRIMARY KEY</literal>, or <literal>EXCLUDE</literal> constraint.
|
||||
Storage parameters for
|
||||
indexes are documented in <xref linkend="SQL-CREATEINDEX">.
|
||||
indexes are documented in <xref linkend="sql-createindex">.
|
||||
The storage parameters currently
|
||||
available for tables are listed below. For many of these parameters, as
|
||||
shown, there is an additional parameter with the same name prefixed with
|
||||
@@ -1360,7 +1360,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
</refsect2>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 id="SQL-CREATETABLE-notes">
|
||||
<refsect1 id="sql-createtable-notes">
|
||||
<title>Notes</title>
|
||||
|
||||
<para>
|
||||
@@ -1407,7 +1407,7 @@ FROM ( { <replaceable class="parameter">numeric_literal</replaceable> | <replace
|
||||
</refsect1>
|
||||
|
||||
|
||||
<refsect1 id="SQL-CREATETABLE-examples">
|
||||
<refsect1 id="sql-createtable-examples">
|
||||
<title>Examples</title>
|
||||
|
||||
<para>
|
||||
@@ -1709,8 +1709,8 @@ CREATE TABLE cities_partdef
|
||||
</programlisting></para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 id="SQL-CREATETABLE-compatibility">
|
||||
<title id="SQL-CREATETABLE-compatibility-title">Compatibility</title>
|
||||
<refsect1 id="sql-createtable-compatibility">
|
||||
<title id="sql-createtable-compatibility-title">Compatibility</title>
|
||||
|
||||
<para>
|
||||
The <command>CREATE TABLE</command> command conforms to the
|
||||
|
Reference in New Issue
Block a user