mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +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:
@@ -24,7 +24,7 @@
|
||||
by <command>INSERT</command> and the new row version created
|
||||
by <command>UPDATE</command>. Availability of old row versions for
|
||||
<command>UPDATE</command> and <command>DELETE</command> depends on
|
||||
the configured replica identity (see <xref linkend="SQL-CREATETABLE-REPLICA-IDENTITY">).
|
||||
the configured replica identity (see <xref linkend="sql-createtable-replica-identity">).
|
||||
</para>
|
||||
|
||||
<para>
|
||||
@@ -576,8 +576,8 @@ typedef void (*LogicalDecodeChangeCB) (struct LogicalDecodingContext *ctx,
|
||||
<note>
|
||||
<para>
|
||||
Only changes in user defined tables that are not unlogged
|
||||
(see <xref linkend="SQL-CREATETABLE-UNLOGGED">) and not temporary
|
||||
(see <xref linkend="SQL-CREATETABLE-TEMPORARY">) can be extracted using
|
||||
(see <xref linkend="sql-createtable-unlogged">) and not temporary
|
||||
(see <xref linkend="sql-createtable-temporary">) can be extracted using
|
||||
logical decoding.
|
||||
</para>
|
||||
</note>
|
||||
|
||||
Reference in New Issue
Block a user