required if a datatype is to be accepted by GROUP BY, DISTINCT, or
ORDER BY. This is documentation for code changes made pursuant to
pgsql-hackers discussion around 29-Nov-02.
+
+ GROUP BY> and DISTINCT> operations require each
+ datatype being grouped or compared to have a mergejoinable
+ equality operator named =>. The equality operator and its
+ associated SORT1> operator are used to implement these
+ operations. Also, the associated SORT1> operator is the
+ default ordering operator for ORDER BY>.
+
+
+
In
PostgreSQL versions before 7.3,