mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Doc: marginal hacking to remove some PDF build warnings.
This patch eliminates a few more "exceed the available area" warnings whose causes aren't particularly connected to anything else. The only one really worthy of comment is that I increased the space allowed for an <orderedlist>'s numbers, because the default of 1em doesn't quite work for more than one digit. The rest are one-off insertions of &zwsp; and suchlike tweaks, in places where they shouldn't do any damage to the material. (In particular, although I split some long identifiers with zwsp's, there are other nearby occurrences of each one; so those changes shouldn't hurt greppability of the document sources.)
This commit is contained in:
		@@ -98,7 +98,7 @@ typedef struct BackgroundWorker
 | 
				
			|||||||
     <term><literal>BGWORKER_BACKEND_DATABASE_CONNECTION</literal></term>
 | 
					     <term><literal>BGWORKER_BACKEND_DATABASE_CONNECTION</literal></term>
 | 
				
			||||||
     <listitem>
 | 
					     <listitem>
 | 
				
			||||||
      <para>
 | 
					      <para>
 | 
				
			||||||
       <indexterm><primary>BGWORKER_BACKEND_DATABASE_CONNECTION</primary></indexterm>
 | 
					       <indexterm><primary>BGWORKER_BACKEND_&zwsp;DATABASE_CONNECTION</primary></indexterm>
 | 
				
			||||||
       Requests the ability to establish a database connection through which it
 | 
					       Requests the ability to establish a database connection through which it
 | 
				
			||||||
       can later run transactions and queries.  A background worker using
 | 
					       can later run transactions and queries.  A background worker using
 | 
				
			||||||
       <literal>BGWORKER_BACKEND_DATABASE_CONNECTION</literal> to connect to a
 | 
					       <literal>BGWORKER_BACKEND_DATABASE_CONNECTION</literal> to connect to a
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -147,7 +147,6 @@ SELECT dblink_connect('myconn', 'dbname=postgres options=-csearch_path=');
 | 
				
			|||||||
-- FOREIGN DATA WRAPPER functionality
 | 
					-- FOREIGN DATA WRAPPER functionality
 | 
				
			||||||
-- Note: local connection must require password authentication for this to work properly
 | 
					-- Note: local connection must require password authentication for this to work properly
 | 
				
			||||||
--       Otherwise, you will receive the following error from dblink_connect():
 | 
					--       Otherwise, you will receive the following error from dblink_connect():
 | 
				
			||||||
--       ----------------------------------------------------------------------
 | 
					 | 
				
			||||||
--       ERROR:  password is required
 | 
					--       ERROR:  password is required
 | 
				
			||||||
--       DETAIL:  Non-superuser cannot connect if the server does not request a password.
 | 
					--       DETAIL:  Non-superuser cannot connect if the server does not request a password.
 | 
				
			||||||
--       HINT:  Target server's authentication method must be changed.
 | 
					--       HINT:  Target server's authentication method must be changed.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -174,7 +174,7 @@
 | 
				
			|||||||
 </sect1>
 | 
					 </sect1>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 <sect1 id="infoschema-administrable-role-authorizations">
 | 
					 <sect1 id="infoschema-administrable-role-authorizations">
 | 
				
			||||||
  <title><literal>administrable_role_authorizations</literal></title>
 | 
					  <title><literal>administrable_role_&zwsp;authorizations</literal></title>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <para>
 | 
					  <para>
 | 
				
			||||||
   The view <literal>administrable_role_authorizations</literal>
 | 
					   The view <literal>administrable_role_authorizations</literal>
 | 
				
			||||||
@@ -888,7 +888,7 @@
 | 
				
			|||||||
 </sect1>
 | 
					 </sect1>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 <sect1 id="infoschema-collation-character-set-applicab"> <!-- max 44 characters -->
 | 
					 <sect1 id="infoschema-collation-character-set-applicab"> <!-- max 44 characters -->
 | 
				
			||||||
  <title><literal>collation_character_set_applicability</literal></title>
 | 
					  <title><literal>collation_character_set_&zwsp;applicability</literal></title>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  <para>
 | 
					  <para>
 | 
				
			||||||
   The view <literal>collation_character_set_applicability</literal>
 | 
					   The view <literal>collation_character_set_applicability</literal>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -712,7 +712,7 @@ SELECT lo_export(image.raster, '/tmp/motd') FROM image
 | 
				
			|||||||
  <example id="lo-example">
 | 
					  <example id="lo-example">
 | 
				
			||||||
   <title>Large Objects with <application>libpq</application> Example Program</title>
 | 
					   <title>Large Objects with <application>libpq</application> Example Program</title>
 | 
				
			||||||
<programlisting><![CDATA[
 | 
					<programlisting><![CDATA[
 | 
				
			||||||
/*-------------------------------------------------------------------------
 | 
					/*-----------------------------------------------------------------
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 * testlo.c
 | 
					 * testlo.c
 | 
				
			||||||
 *    test using large objects with libpq
 | 
					 *    test using large objects with libpq
 | 
				
			||||||
@@ -724,7 +724,7 @@ SELECT lo_export(image.raster, '/tmp/motd') FROM image
 | 
				
			|||||||
 * IDENTIFICATION
 | 
					 * IDENTIFICATION
 | 
				
			||||||
 *    src/test/examples/testlo.c
 | 
					 *    src/test/examples/testlo.c
 | 
				
			||||||
 *
 | 
					 *
 | 
				
			||||||
 *-------------------------------------------------------------------------
 | 
					 *-----------------------------------------------------------------
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
#include <stdio.h>
 | 
					#include <stdio.h>
 | 
				
			||||||
#include <stdlib.h>
 | 
					#include <stdlib.h>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,6 +12,7 @@
 | 
				
			|||||||
<xsl:param name="ulink.footnotes" select="1"></xsl:param>
 | 
					<xsl:param name="ulink.footnotes" select="1"></xsl:param>
 | 
				
			||||||
<xsl:param name="use.extensions" select="1"></xsl:param>
 | 
					<xsl:param name="use.extensions" select="1"></xsl:param>
 | 
				
			||||||
<xsl:param name="variablelist.as.blocks" select="1"></xsl:param>
 | 
					<xsl:param name="variablelist.as.blocks" select="1"></xsl:param>
 | 
				
			||||||
 | 
					<xsl:param name="orderedlist.label.width">1.5em</xsl:param>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<xsl:attribute-set name="monospace.verbatim.properties"
 | 
					<xsl:attribute-set name="monospace.verbatim.properties"
 | 
				
			||||||
                   use-attribute-sets="verbatim.properties monospace.properties">
 | 
					                   use-attribute-sets="verbatim.properties monospace.properties">
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1891,8 +1891,8 @@ SELECT ts_rewrite('a & b'::tsquery,
 | 
				
			|||||||
   </para>
 | 
					   </para>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<synopsis>
 | 
					<synopsis>
 | 
				
			||||||
tsvector_update_trigger(<replaceable class="parameter">tsvector_column_name</replaceable>, <replaceable class="parameter">config_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
 | 
					tsvector_update_trigger(<replaceable class="parameter">tsvector_column_name</replaceable>,&zwsp; <replaceable class="parameter">config_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
 | 
				
			||||||
tsvector_update_trigger_column(<replaceable class="parameter">tsvector_column_name</replaceable>, <replaceable class="parameter">config_column_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
 | 
					tsvector_update_trigger_column(<replaceable class="parameter">tsvector_column_name</replaceable>,&zwsp; <replaceable class="parameter">config_column_name</replaceable>, <replaceable class="parameter">text_column_name</replaceable> <optional>, ... </optional>)
 | 
				
			||||||
</synopsis>
 | 
					</synopsis>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   <para>
 | 
					   <para>
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user