]> granicus.if.org Git - postgresql/commitdiff
Fix whitespace issues in the man pages
authorPeter Eisentraut <peter_e@gmx.net>
Sun, 2 Jun 2013 02:03:02 +0000 (22:03 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Sun, 2 Jun 2013 02:08:26 +0000 (22:08 -0400)
See 00b0c73f1f2b98a7d09de63aaa14d6498ac521ae for an explanation.

doc/src/sgml/ref/alter_view.sgml
doc/src/sgml/ref/create_event_trigger.sgml
doc/src/sgml/ref/create_view.sgml
doc/src/sgml/ref/refresh_materialized_view.sgml
doc/src/sgml/ref/select.sgml

index 55674c650a98b43afecee64b2c37edb1f8a50838..df527aed08871427f42abd08de9d6b048afd07c5 100644 (file)
@@ -165,8 +165,7 @@ CREATE VIEW a_view AS SELECT * FROM base_table;
 ALTER VIEW a_view ALTER COLUMN ts SET DEFAULT now();
 INSERT INTO base_table(id) VALUES(1);  -- ts will receive a NULL
 INSERT INTO a_view(id) VALUES(2);  -- ts will receive the current time
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index d49956c30288ba9ccb24658d311a1d78c9ae875a..0af51340d8a78a344661bc37713fc9880447fe95 100644 (file)
@@ -137,8 +137,7 @@ $$;
 
 CREATE EVENT TRIGGER abort_ddl ON ddl_command_start
    EXECUTE PROCEDURE abort_any_command();
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1 id="sql-createeventtrigger-compatibility">
index aa3fc1515a34a581fea74da61a1c473cbe4a0219..ced3115f3e7632e117ea0e353d37d0cf31601402 100644 (file)
@@ -307,8 +307,7 @@ CREATE RECURSIVE VIEW nums_1_100 (n) AS
     VALUES (1)
 UNION ALL
     SELECT n+1 FROM nums_1_100 WHERE n < 100;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 44cff9c98e7ccd7d7b45b44a8670e8832b9e2402..8f59bbf123108ae9f87be58aadfdf7124756a2b6 100644 (file)
@@ -87,8 +87,7 @@ REFRESH MATERIALIZED VIEW order_summary;
    state:
 <programlisting>
 REFRESH MATERIALIZED VIEW annual_statistics_basis WITH NO DATA;
-</programlisting>
-  </para>
+</programlisting></para>
  </refsect1>
 
  <refsect1>
index 1d3f854b64cec009ff3e0ed2327b351cffb9309d..1f89cc039da58b0e1adafa462c87c954944eeac4 100644 (file)
@@ -514,8 +514,7 @@ TABLE [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ * ]
         <literal>FROM</> item.)
        </para>
 
-       <para>
-        <literal>LATERAL</literal> can also precede a function-call
+       <para><literal>LATERAL</literal> can also precede a function-call
         <literal>FROM</> item, but in this case it is a noise word, because
         the function expression can refer to earlier <literal>FROM</> items
         in any case.