Fix cut-and-paste-o.
authorTom Lane
Sun, 24 Mar 2002 16:57:29 +0000 (16:57 +0000)
committerTom Lane
Sun, 24 Mar 2002 16:57:29 +0000 (16:57 +0000)
doc/src/sgml/ref/explain.sgml

index 28172aac5b7bad276fa97c91cfdce834ef3fd017..e8ef9fc76f47d72aa929d3bc4996b703190fee9e 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -220,13 +220,13 @@ EXPLAIN SELECT * FROM foo WHERE i = 4;
    using an aggregate function:
 
    
-EXPLAIN SELECT sum(i) FROM foo WHERE i < 4;
+EXPLAIN SELECT sum(i) FROM foo WHERE i < 10;
     
                              QUERY PLAN
 ---------------------------------------------------------------------
  Aggregate  (cost=23.93..23.93 rows=1 width=4)
-   ->  Index Scan using fi on foo  (cost=0.00..23.92 rows=6 width=4)
-         Index Filter: (i < 10)
+   ->  Index Scan using fi on foo  (cost=0.00..23.92 rows=6 width=4)
+         Index Filter: (i < 10)
 (3 rows)