Skip to content

Commit 124966c

Browse files
committed
Put some psql documentation pieces back into alphabetical order
1 parent 6d0eb38 commit 124966c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

doc/src/sgml/ref/psql-ref.sgml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3873,23 +3873,23 @@ bar
38733873
</varlistentry>
38743874

38753875
<varlistentry>
3876-
<term><varname>HIDE_TOAST_COMPRESSION</varname></term>
3876+
<term><varname>HIDE_TABLEAM</varname></term>
38773877
<listitem>
38783878
<para>
3879-
If this variable is set to <literal>true</literal>, column
3880-
compression method details are not displayed. This is mainly
3881-
useful for regression tests.
3879+
If this variable is set to <literal>true</literal>, a table's access
3880+
method details are not displayed. This is mainly useful for
3881+
regression tests.
38823882
</para>
38833883
</listitem>
38843884
</varlistentry>
38853885

38863886
<varlistentry>
3887-
<term><varname>HIDE_TABLEAM</varname></term>
3887+
<term><varname>HIDE_TOAST_COMPRESSION</varname></term>
38883888
<listitem>
38893889
<para>
3890-
If this variable is set to <literal>true</literal>, a table's access
3891-
method details are not displayed. This is mainly useful for
3892-
regression tests.
3890+
If this variable is set to <literal>true</literal>, column
3891+
compression method details are not displayed. This is mainly
3892+
useful for regression tests.
38933893
</para>
38943894
</listitem>
38953895
</varlistentry>

src/bin/psql/help.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -374,10 +374,10 @@ helpVariables(unsigned short int pager)
374374
" true if last query failed, else false\n"));
375375
fprintf(output, _(" FETCH_COUNT\n"
376376
" the number of result rows to fetch and display at a time (0 = unlimited)\n"));
377-
fprintf(output, _(" HIDE_TOAST_COMPRESSION\n"
378-
" if set, compression methods are not displayed\n"));
379377
fprintf(output, _(" HIDE_TABLEAM\n"
380378
" if set, table access methods are not displayed\n"));
379+
fprintf(output, _(" HIDE_TOAST_COMPRESSION\n"
380+
" if set, compression methods are not displayed\n"));
381381
fprintf(output, _(" HISTCONTROL\n"
382382
" controls command history [ignorespace, ignoredups, ignoreboth]\n"));
383383
fprintf(output, _(" HISTFILE\n"
@@ -489,10 +489,10 @@ helpVariables(unsigned short int pager)
489489
" same as the dbname connection parameter\n"));
490490
fprintf(output, _(" PGHOST\n"
491491
" same as the host connection parameter\n"));
492-
fprintf(output, _(" PGPASSWORD\n"
493-
" connection password (not recommended)\n"));
494492
fprintf(output, _(" PGPASSFILE\n"
495493
" password file name\n"));
494+
fprintf(output, _(" PGPASSWORD\n"
495+
" connection password (not recommended)\n"));
496496
fprintf(output, _(" PGPORT\n"
497497
" same as the port connection parameter\n"));
498498
fprintf(output, _(" PGUSER\n"

0 commit comments

Comments
 (0)