]> granicus.if.org Git - postgresql/commitdiff
doc: Small style improvements
authorPeter Eisentraut <peter_e@gmx.net>
Thu, 27 Oct 2016 16:00:00 +0000 (12:00 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 28 Oct 2016 00:33:47 +0000 (20:33 -0400)
doc/src/sgml/pageinspect.sgml

index 5d187ede3a01ea27446d9fd861966580c0bc4a50..5c816c0226ce9f1ec0459a2183e4ac0123a1536d 100644 (file)
@@ -321,7 +321,7 @@ test=# SELECT * FROM brin_metapage_info(get_raw_page('brinidx', 0));
       identifiers in a <acronym>BRIN</acronym> index range map page.
       For example:
 <screen>
-test=# SELECT * FROM brin_revmap_data(get_raw_page('brinidx', 2)) limit 5;
+test=# SELECT * FROM brin_revmap_data(get_raw_page('brinidx', 2)) LIMIT 5;
   pages  
 ---------
  (6,137)
@@ -433,7 +433,7 @@ test=# SELECT * FROM gin_page_opaque_info(get_raw_page('gin_index', 2));
       <function>gin_leafpage_items</function> returns information about
       the data stored in a <acronym>GIN</acronym> leaf page.  For example:
 <screen>
-test=# SELECT first_tid, nbytes, tids[0:5] as some_tids
+test=# SELECT first_tid, nbytes, tids[0:5] AS some_tids
         FROM gin_leafpage_items(get_raw_page('gin_test_idx', 2));
  first_tid | nbytes |                        some_tids
 -----------+--------+----------------------------------------------------------