mirror of
https://github.com/postgres/postgres.git
synced 2025-08-27 07:42:10 +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/createuser.sgml
|
||||
PostgreSQL documentation
|
||||
-->
|
||||
|
||||
<refentry id="APP-CREATEUSER">
|
||||
<refentry id="app-createuser">
|
||||
<indexterm zone="app-createuser">
|
||||
<primary>createuser</primary>
|
||||
</indexterm>
|
||||
@@ -49,7 +49,7 @@ PostgreSQL documentation
|
||||
|
||||
<para>
|
||||
<application>createuser</application> is a wrapper around the
|
||||
<acronym>SQL</acronym> command <xref linkend="SQL-CREATEROLE">.
|
||||
<acronym>SQL</acronym> command <xref linkend="sql-createrole">.
|
||||
There is no effective difference between creating users via
|
||||
this utility and via other methods for accessing the server.
|
||||
</para>
|
||||
@@ -415,8 +415,8 @@ PostgreSQL documentation
|
||||
<title>Diagnostics</title>
|
||||
|
||||
<para>
|
||||
In case of difficulty, see <xref linkend="SQL-CREATEROLE">
|
||||
and <xref linkend="APP-PSQL"> for
|
||||
In case of difficulty, see <xref linkend="sql-createrole">
|
||||
and <xref linkend="app-psql"> for
|
||||
discussions of potential problems and error messages.
|
||||
The database server must be running at the
|
||||
targeted host. Also, any default connection settings and environment
|
||||
|
Reference in New Issue
Block a user