From 93874ce064836e45220978e2656cbf62eba766ed Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 1 Jun 2013 22:03:02 -0400 Subject: [PATCH] Fix whitespace issues in the man pages See 00b0c73f1f2b98a7d09de63aaa14d6498ac521ae for an explanation. --- doc/src/sgml/ref/alter_view.sgml | 3 +-- doc/src/sgml/ref/create_event_trigger.sgml | 3 +-- doc/src/sgml/ref/create_view.sgml | 3 +-- doc/src/sgml/ref/refresh_materialized_view.sgml | 3 +-- doc/src/sgml/ref/select.sgml | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) 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.