incorrect order? in "D.1. Supported Features" of PostgreSQL 16 manual

The Post Office <noreply@postgresql.org>

From: PG Doc comments form <noreply@postgresql.org>
To: pgsql-docs@lists.postgresql.org
Cc: koizumistr@minos.ocn.ne.jp
Date: 2024-02-23T05:36:54Z
Lists: pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/features-sql-standard.html
Description:

In "D.1. Supported
Features"(https://www.postgresql.org/docs/current/features-sql-standard.html),
identifiers appear as following:

F302 	  	INTERSECT table operator 	 
F303 	  	INTERSECT DISTINCT table operator 	 
F302-02 	  	INTERSECT ALL table operator 	 
F304 	  	EXCEPT ALL table operator

The correct result would be as follows:

F302 	  	INTERSECT table operator 	 
F302-02 	  	INTERSECT ALL table operator 	 
F303 	  	INTERSECT DISTINCT table operator 	 
F304 	  	EXCEPT ALL table operator

Commits

  1. Fix mistake in SQL features list