doc: fix type alignment for CREATE TABLE in triggers
authorDaniel Gustafsson <[email protected]>
Fri, 2 Dec 2022 10:31:54 +0000 (11:31 +0100)
committerDaniel Gustafsson <[email protected]>
Fri, 2 Dec 2022 10:31:54 +0000 (11:31 +0100)
Datatypes in CREATE TABLE statements in the examples were vertically
aligned in most cases, a few examples were unaligned with a single
space. This makes sure all examples on the same page are consistently
aligned.

Patch by Laurenz Albe with some additional fixups by me.

Author: Laurenz Albe <[email protected]>
Reported-by: [email protected]
Discussion: https://postgr.es/m/166870885664.635.16667004450401573487@wrigleys.postgresql.org

doc/src/sgml/plpgsql.sgml

index dda667e68e8c909d71363cbab8f49b88fc4b128b..2b2a1a82159292bea04a9bf0cf6082bc23fe8156 100644 (file)
@@ -4230,10 +4230,10 @@ ASSERT <replaceable class="parameter">condition</replaceable> <optional> , <repl
 
 <programlisting>
 CREATE TABLE emp (
-    empname text,
-    salary integer,
-    last_date timestamp,
-    last_user text
+    empname           text,
+    salary            integer,
+    last_date         timestamp,
+    last_user         text
 );
 
 CREATE FUNCTION emp_stamp() RETURNS trigger AS $emp_stamp$
@@ -4292,7 +4292,7 @@ CREATE TABLE emp_audit(
     stamp             timestamp NOT NULL,
     userid            text      NOT NULL,
     empname           text      NOT NULL,
-    salary integer
+    salary            integer
 );
 
 CREATE OR REPLACE FUNCTION process_emp_audit() RETURNS TRIGGER AS $emp_audit$
@@ -4589,7 +4589,7 @@ CREATE TABLE emp_audit(
     stamp             timestamp NOT NULL,
     userid            text      NOT NULL,
     empname           text      NOT NULL,
-    salary integer
+    salary            integer
 );
 
 CREATE OR REPLACE FUNCTION process_emp_audit() RETURNS TRIGGER AS $emp_audit$