Skip to content

Commit a94b703

Browse files
committed
doc: Small style improvements
1 parent ce4dc97 commit a94b703

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/src/sgml/pageinspect.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ test=# SELECT * FROM brin_metapage_info(get_raw_page('brinidx', 0));
321321
identifiers in a <acronym>BRIN</acronym> index range map page.
322322
For example:
323323
<screen>
324-
test=# SELECT * FROM brin_revmap_data(get_raw_page('brinidx', 2)) limit 5;
324+
test=# SELECT * FROM brin_revmap_data(get_raw_page('brinidx', 2)) LIMIT 5;
325325
pages
326326
---------
327327
(6,137)
@@ -433,7 +433,7 @@ test=# SELECT * FROM gin_page_opaque_info(get_raw_page('gin_index', 2));
433433
<function>gin_leafpage_items</function> returns information about
434434
the data stored in a <acronym>GIN</acronym> leaf page. For example:
435435
<screen>
436-
test=# SELECT first_tid, nbytes, tids[0:5] as some_tids
436+
test=# SELECT first_tid, nbytes, tids[0:5] AS some_tids
437437
FROM gin_leafpage_items(get_raw_page('gin_test_idx', 2));
438438
first_tid | nbytes | some_tids
439439
-----------+--------+----------------------------------------------------------

0 commit comments

Comments
 (0)