mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	doc: Whitespace and formatting fixes
This commit is contained in:
		@@ -1906,8 +1906,10 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name);
 | 
			
		||||
         <term><literal>protocol</literal></term>
 | 
			
		||||
          <listitem>
 | 
			
		||||
           <para>
 | 
			
		||||
             SSL/TLS version in use. Common values are "SSLv2", "SSLv3", 
 | 
			
		||||
             "TLSv1", "TLSv1.1" and "TLSv1.2", but an implementation may
 | 
			
		||||
             SSL/TLS version in use. Common values
 | 
			
		||||
             are <literal>"SSLv2"</literal>, <literal>"SSLv3"</literal>,
 | 
			
		||||
             <literal>"TLSv1"</literal>, <literal>"TLSv1.1"</literal>
 | 
			
		||||
             and <literal>"TLSv1.2"</literal>, but an implementation may
 | 
			
		||||
             return other strings if some other protocol is used.
 | 
			
		||||
           </para>
 | 
			
		||||
          </listitem>
 | 
			
		||||
 
 | 
			
		||||
@@ -648,7 +648,7 @@ INSERT INTO employees_log SELECT *, current_timestamp FROM upd;
 | 
			
		||||
INSERT INTO distributors AS d (did, dname) VALUES (8, 'Anvil Distribution')
 | 
			
		||||
    ON CONFLICT (did) DO UPDATE
 | 
			
		||||
    SET dname = EXCLUDED.dname || ' (formerly ' || d.dname || ')'
 | 
			
		||||
  WHERE d.zipcode != '21201';
 | 
			
		||||
    WHERE d.zipcode <> '21201';
 | 
			
		||||
 | 
			
		||||
-- Name a constraint directly in the statement (uses associated
 | 
			
		||||
-- index to arbitrate taking the DO NOTHING action)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user