From: Peter Eisentraut Date: Sun, 2 Jun 2013 02:03:02 +0000 (-0400) Subject: Fix whitespace issues in the man pages X-Git-Tag: REL9_3_BETA2~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93874ce064836e45220978e2656cbf62eba766ed;p=postgresql Fix whitespace issues in the man pages See 00b0c73f1f2b98a7d09de63aaa14d6498ac521ae for an explanation. --- diff --git a/doc/src/sgml/ref/alter_view.sgml b/doc/src/sgml/ref/alter_view.sgml index 55674c650a..df527aed08 100644 --- a/doc/src/sgml/ref/alter_view.sgml +++ b/doc/src/sgml/ref/alter_view.sgml @@ -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 - - + diff --git a/doc/src/sgml/ref/create_event_trigger.sgml b/doc/src/sgml/ref/create_event_trigger.sgml index d49956c302..0af51340d8 100644 --- a/doc/src/sgml/ref/create_event_trigger.sgml +++ b/doc/src/sgml/ref/create_event_trigger.sgml @@ -137,8 +137,7 @@ $$; CREATE EVENT TRIGGER abort_ddl ON ddl_command_start EXECUTE PROCEDURE abort_any_command(); - - + diff --git a/doc/src/sgml/ref/create_view.sgml b/doc/src/sgml/ref/create_view.sgml index aa3fc1515a..ced3115f3e 100644 --- a/doc/src/sgml/ref/create_view.sgml +++ b/doc/src/sgml/ref/create_view.sgml @@ -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; - - + diff --git a/doc/src/sgml/ref/refresh_materialized_view.sgml b/doc/src/sgml/ref/refresh_materialized_view.sgml index 44cff9c98e..8f59bbf123 100644 --- a/doc/src/sgml/ref/refresh_materialized_view.sgml +++ b/doc/src/sgml/ref/refresh_materialized_view.sgml @@ -87,8 +87,7 @@ REFRESH MATERIALIZED VIEW order_summary; state: REFRESH MATERIALIZED VIEW annual_statistics_basis WITH NO DATA; - - + diff --git a/doc/src/sgml/ref/select.sgml b/doc/src/sgml/ref/select.sgml index 1d3f854b64..1f89cc039d 100644 --- a/doc/src/sgml/ref/select.sgml +++ b/doc/src/sgml/ref/select.sgml @@ -514,8 +514,7 @@ TABLE [ ONLY ] table_name [ * ] FROM item.) - - LATERAL can also precede a function-call + LATERAL can also precede a function-call FROM item, but in this case it is a noise word, because the function expression can refer to earlier FROM items in any case.