doc: Fix network_ops -> inet_ops in SpGiST operator class list
authorMichael Paquier
Wed, 25 Jan 2023 11:00:36 +0000 (20:00 +0900)
committerMichael Paquier
Wed, 25 Jan 2023 11:00:36 +0000 (20:00 +0900)
network_ops is an opclass family of SpGiST, and the opclass able to
work on the inet type is named inet_ops.

Oversight in 7a1cd52, that reworked the design of the table listing all
the operators available.

Reported-by: Laurence Parry
Reviewed-by: Tom Lane, David G. Johnston
Discussion: https://postgr.es/m/167458110639.2667300.14741268666497110766@wrigleys.postgresql.org
Backpatch-through: 14

doc/src/sgml/spgist.sgml

index 00432512de9a8e56c8436ceb6c0dfbeddc53ece9..102f8627bd05d5a93c2b60e0596a0c8572985b63 100644 (file)
      |>> (box,box)
 
      
-      kd_point_ops
-      |>> (point,point)
-      <-> (point,point)
-     
-     << (point,point)
-     >> (point,point)
-     <<| (point,point)
-     ~= (point,point)
-     <@ (point,box)
-
-     
-      network_ops
+      inet_ops
       << (inet,inet)
       
      
      >= (inet,inet)
      && (inet,inet)
 
+     
+      kd_point_ops
+      |>> (point,point)
+      <-> (point,point)
+     
+     << (point,point)
+     >> (point,point)
+     <<| (point,point)
+     ~= (point,point)
+     <@ (point,box)
+
      
       poly_ops
       << (polygon,polygon)