Better output of synopsis
authorCΓ©dric Villemain <Cedric.Villemain@Data-Bene.io>
Fri, 12 Nov 2021 13:24:40 +0000 (14:24 +0100)
committerCΓ©dric Villemain <Cedric.Villemain@Data-Bene.io>
Fri, 12 Nov 2021 13:24:40 +0000 (14:24 +0100)
hopefuly

README.md

index e72215ec2cda0fa0b8fc0930f55588f1e09c64d6..1cdecce9fcaad92ac0d1813bd7813c830acbe951 100644 (file)
--- a/README.md
+++ b/README.md
@@ -139,81 +139,81 @@ Executing a snapshot and a restore is very simple:
 
 ## SYNOPSIS
 
-   pgsysconf(OUT os_page_size bigint, OUT os_pages_free bigint,
-             OUT os_total_pages bigint)
-     RETURNS record
-    
-   pgsysconf_pretty(OUT os_page_size text, OUT os_pages_free text,
-                    OUT os_total_pages text)
-     RETURNS record
-
-   pgfadvise(IN relname regclass, IN fork text, IN action int,
-             OUT relpath text, OUT os_page_size bigint,
-             OUT rel_os_pages bigint, OUT os_pages_free bigint)
-     RETURNS setof record
-
-   pgfadvise_willneed(IN relname regclass,
-                      OUT relpath text, OUT os_page_size bigint,
-                      OUT rel_os_pages bigint, OUT os_pages_free bigint)
-     RETURNS setof record
-
-   pgfadvise_dontneed(IN relname regclass,
-                      OUT relpath text, OUT os_page_size bigint,
-                      OUT rel_os_pages bigint, OUT os_pages_free bigint)
+    pgsysconf(OUT os_page_size bigint, OUT os_pages_free bigint,
+              OUT os_total_pages bigint)
+      RETURNS record
+
+    pgsysconf_pretty(OUT os_page_size text, OUT os_pages_free text,
+                     OUT os_total_pages text)
+      RETURNS record
+
+    pgfadvise(IN relname regclass, IN fork text, IN action int,
+              OUT relpath text, OUT os_page_size bigint,
+              OUT rel_os_pages bigint, OUT os_pages_free bigint)
+      RETURNS setof record
+
+    pgfadvise_willneed(IN relname regclass,
+                       OUT relpath text, OUT os_page_size bigint,
+                       OUT rel_os_pages bigint, OUT os_pages_free bigint)
+      RETURNS setof record
+
+    pgfadvise_dontneed(IN relname regclass,
+                       OUT relpath text, OUT os_page_size bigint,
+                       OUT rel_os_pages bigint, OUT os_pages_free bigint)
+      RETURNS setof record
+
+    pgfadvise_normal(IN relname regclass,
+                     OUT relpath text, OUT os_page_size bigint,
+                     OUT rel_os_pages bigint, OUT os_pages_free bigint)
+      RETURNS setof record
+
+    pgfadvise_sequential(IN relname regclass,
+                         OUT relpath text, OUT os_page_size bigint,
+                         OUT rel_os_pages bigint, OUT os_pages_free bigint)
+      RETURNS setof record
+
+    pgfadvise_random(IN relname regclass,
+                     OUT relpath text, OUT os_page_size bigint,
+                     OUT rel_os_pages bigint, OUT os_pages_free bigint)
+      RETURNS setof record
+
+    pgfadvise_loader(IN relname regclass, IN fork text, IN segment int,
+                     IN load bool, IN unload bool, IN databit varbit,
+                     OUT relpath text, OUT os_page_size bigint,
+                     OUT os_pages_free bigint, OUT pages_loaded bigint,
+                     OUT pages_unloaded bigint)
+      RETURNS setof record
+
+    pgfadvise_loader(IN relname regclass, IN segment int,
+                     IN load bool, IN unload bool, IN databit varbit,
+                     OUT relpath text, OUT os_page_size bigint,
+                     OUT os_pages_free bigint, OUT pages_loaded bigint,
+                     OUT pages_unloaded bigint)
+      RETURNS setof record
+
+    pgfincore(IN relname regclass, IN fork text, IN getdatabit bool,
+              OUT relpath text, OUT segment int, OUT os_page_size bigint,
+              OUT rel_os_pages bigint, OUT pages_mem bigint,
+              OUT group_mem bigint, OUT os_pages_free bigint,
+              OUT databit varbit, OUT pages_dirty bigint,
+              OUT group_dirty bigint)
+      RETURNS setof record
+
+    pgfincore(IN relname regclass, IN getdatabit bool,
+              OUT relpath text, OUT segment int, OUT os_page_size bigint,
+              OUT rel_os_pages bigint, OUT pages_mem bigint,
+              OUT group_mem bigint, OUT os_pages_free bigint,
+              OUT databit varbit, OUT pages_dirty bigint,
+              OUT group_dirty bigint)
      RETURNS setof record
 
-   pgfadvise_normal(IN relname regclass,
-                    OUT relpath text, OUT os_page_size bigint,
-                    OUT rel_os_pages bigint, OUT os_pages_free bigint)
-     RETURNS setof record
-
-   pgfadvise_sequential(IN relname regclass,
-                        OUT relpath text, OUT os_page_size bigint,
-                        OUT rel_os_pages bigint, OUT os_pages_free bigint)
-     RETURNS setof record
-
-   pgfadvise_random(IN relname regclass,
-                    OUT relpath text, OUT os_page_size bigint,
-                    OUT rel_os_pages bigint, OUT os_pages_free bigint)
-     RETURNS setof record
-
-   pgfadvise_loader(IN relname regclass, IN fork text, IN segment int,
-                    IN load bool, IN unload bool, IN databit varbit,
-                    OUT relpath text, OUT os_page_size bigint,
-                    OUT os_pages_free bigint, OUT pages_loaded bigint,
-                    OUT pages_unloaded bigint)
-     RETURNS setof record
-
-   pgfadvise_loader(IN relname regclass, IN segment int,
-                    IN load bool, IN unload bool, IN databit varbit,
-                    OUT relpath text, OUT os_page_size bigint,
-                    OUT os_pages_free bigint, OUT pages_loaded bigint,
-                    OUT pages_unloaded bigint)
-     RETURNS setof record
-
-   pgfincore(IN relname regclass, IN fork text, IN getdatabit bool,
-             OUT relpath text, OUT segment int, OUT os_page_size bigint,
-             OUT rel_os_pages bigint, OUT pages_mem bigint,
-             OUT group_mem bigint, OUT os_pages_free bigint,
-             OUT databit varbit, OUT pages_dirty bigint,
-             OUT group_dirty bigint)
-     RETURNS setof record
-
-   pgfincore(IN relname regclass, IN getdatabit bool,
-             OUT relpath text, OUT segment int, OUT os_page_size bigint,
-             OUT rel_os_pages bigint, OUT pages_mem bigint,
-             OUT group_mem bigint, OUT os_pages_free bigint,
-             OUT databit varbit, OUT pages_dirty bigint,
-             OUT group_dirty bigint)
-     RETURNS setof record
-
-   pgfincore(IN relname regclass,
-             OUT relpath text, OUT segment int, OUT os_page_size bigint,
-             OUT rel_os_pages bigint, OUT pages_mem bigint,
-             OUT group_mem bigint, OUT os_pages_free bigint,
-             OUT databit varbit, OUT pages_dirty bigint,
-             OUT group_dirty bigint)
-     RETURNS setof record
+    pgfincore(IN relname regclass,
+              OUT relpath text, OUT segment int, OUT os_page_size bigint,
+              OUT rel_os_pages bigint, OUT pages_mem bigint,
+              OUT group_mem bigint, OUT os_pages_free bigint,
+              OUT databit varbit, OUT pages_dirty bigint,
+              OUT group_dirty bigint)
+      RETURNS setof record
 
 ## DOCUMENTATION