mirror of
https://github.com/postgres/postgres.git
synced 2025-08-31 17:02:12 +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_view.sgml
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
<refentry id="SQL-CREATEVIEW">
|
||||
<refentry id="sql-createview">
|
||||
<indexterm zone="sql-createview">
|
||||
<primary>CREATE VIEW</primary>
|
||||
</indexterm>
|
||||
@@ -165,10 +165,10 @@ CREATE VIEW [ <replaceable>schema</replaceable> . ] <replaceable>view_name</repl
|
||||
|
||||
<varlistentry>
|
||||
<term><literal>WITH [ CASCADED | LOCAL ] CHECK OPTION</literal>
|
||||
<indexterm zone="SQL-CREATEVIEW">
|
||||
<indexterm zone="sql-createview">
|
||||
<primary>CHECK OPTION</primary>
|
||||
</indexterm>
|
||||
<indexterm zone="SQL-CREATEVIEW">
|
||||
<indexterm zone="sql-createview">
|
||||
<primary>WITH CHECK OPTION</primary>
|
||||
</indexterm>
|
||||
</term>
|
||||
@@ -278,8 +278,8 @@ CREATE VIEW vista AS SELECT text 'Hello World' AS hello;
|
||||
to replace it (this includes being a member of the owning role).
|
||||
</para>
|
||||
|
||||
<refsect2 id="SQL-CREATEVIEW-updatable-views">
|
||||
<title id="SQL-CREATEVIEW-updatable-views-title">Updatable Views</title>
|
||||
<refsect2 id="sql-createview-updatable-views">
|
||||
<title id="sql-createview-updatable-views-title">Updatable Views</title>
|
||||
|
||||
<indexterm zone="sql-createview-updatable-views">
|
||||
<primary>updatable views</primary>
|
||||
|
Reference in New Issue
Block a user