Move --interactive in createuser.sgml?

2023-07-04 Thread Ekaterina Kiryanova

Hello!

I noticed that the --interactive option in createuser.sgml is in the 
list of short options rather than in the list of the long ones later on.
If it makes sense to move it below, the attached patch fixes that for 
master (after --bypassrls/--no-bypassrls).

Please take a look.

--
Best regards,
Ekaterina Kiryanova
Technical Writer
Postgres Professional
the Russian PostgreSQL Companydiff --git a/doc/src/sgml/ref/createuser.sgml b/doc/src/sgml/ref/createuser.sgml
index 5c34c62342..45fe700e85 100644
--- a/doc/src/sgml/ref/createuser.sgml
+++ b/doc/src/sgml/ref/createuser.sgml
@@ -183,20 +183,6 @@ PostgreSQL documentation
   
  
 
- 
-  --interactive
-  
-   
-Prompt for the user name if none is specified on the command line, and
-also prompt for whichever of the options
--d/-D,
--r/-R,
--s/-S is not specified on the command
-line.  (This was the default behavior up to PostgreSQL 9.1.)
-   
-  
- 
-
  
   -l
   --login
@@ -330,6 +316,20 @@ PostgreSQL documentation
   
  
 
+ 
+  --interactive
+  
+   
+Prompt for the user name if none is specified on the command line, and
+also prompt for whichever of the options
+-d/-D,
+-r/-R,
+-s/-S is not specified on the command
+line.  (This was the default behavior up to PostgreSQL 9.1.)
+   
+  
+ 
+
  
   --replication
   


Re: Move --interactive in createuser.sgml?

2023-07-04 Thread Daniel Gustafsson
> On 4 Jul 2023, at 09:58, Ekaterina Kiryanova  
> wrote:

> I noticed that the --interactive option in createuser.sgml is in the list of 
> short options rather than in the list of the long ones later on.
> If it makes sense to move it below, the attached patch fixes that for master 
> (after --bypassrls/--no-bypassrls).
> Please take a look.

I'm not sure this moves the needle much in terms of consistency in listing
options, and I'm not sure there is policy to follow.  createdb has long options
in alphabetical order, pg_basebackup has long options both by alphabetical and
grouped last, and pg_amcheck groups options by type.

Whether or not an option has a short option as well as a long option is an
implementation detail that I don't think should drive how we present the
information to the users in order to help them find what they need.

--
Daniel Gustafsson