doc: change "cross product" to "Cartesian product"
authorBruce Momjian <bruce@momjian.us>
Thu, 7 Sep 2023 19:47:53 +0000 (15:47 -0400)
committerBruce Momjian <bruce@momjian.us>
Thu, 7 Sep 2023 19:48:18 +0000 (15:48 -0400)
Reported-by: Erik Wienhold
Discussion: https://postgr.es/m/2053109544.160895.1684955437950@office.mailbox.org

Author: Erik Wienhold

Backpatch-through: master

doc/src/sgml/queries.sgml

index 3f9584928c516eb466129fe6c8ee3e38b39ccca1..8a4674e5f280a0e14d1f3d45e7e0a347105d14b3 100644 (file)
@@ -392,7 +392,7 @@ FROM <replaceable>table_reference</replaceable> <optional>, <replaceable>table_r
         input tables.  As with <literal>USING</literal>, these columns appear
         only once in the output table.  If there are no common
         column names, <literal>NATURAL JOIN</literal> behaves like
-        <literal>JOIN ... ON TRUE</literal>, producing a cross-product join.
+        <literal>CROSS JOIN</literal>.
        </para>
 
        <note>
@@ -1362,7 +1362,7 @@ GROUPING SETS (
 
    <para>
     If multiple grouping items are specified in a single <literal>GROUP BY</literal>
-    clause, then the final list of grouping sets is the cross product of the
+    clause, then the final list of grouping sets is the Cartesian product of the
     individual items.  For example:
 <programlisting>
 GROUP BY a, CUBE (b, c), GROUPING SETS ((d), (e))