aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/gist
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2010-04-14 20:17:26 +0000
committerRobert Haas <rhaas@postgresql.org>2010-04-14 20:17:26 +0000
commit9d137a756fb7fd7e7f1b2f932009abd0aea4ff79 (patch)
tree4143df76231d0c068efb8988be8dfae9c1691bdc /src/backend/access/gist
parent55d7556a4dddf0d0b545242a9f6887d2d5eeeb8f (diff)
downloadpostgresql-9d137a756fb7fd7e7f1b2f932009abd0aea4ff79.tar.gz
postgresql-9d137a756fb7fd7e7f1b2f932009abd0aea4ff79.zip
Typo fix. Kevin Grittner.
Diffstat (limited to 'src/backend/access/gist')
-rw-r--r--src/backend/access/gist/README4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/README b/src/backend/access/gist/README
index aaa6c2abbf9..6c90e508bfe 100644
--- a/src/backend/access/gist/README
+++ b/src/backend/access/gist/README
@@ -1,4 +1,4 @@
-$PostgreSQL: pgsql/src/backend/access/gist/README,v 1.4 2008/03/20 17:55:14 momjian Exp $
+$PostgreSQL: pgsql/src/backend/access/gist/README,v 1.5 2010/04/14 20:17:26 rhaas Exp $
GiST Indexing
=============
@@ -110,7 +110,7 @@ particularly, it is now a single-pass algorithm.
Function findLeaf is used to identify subtree for insertion. Page, in which
insertion is proceeded, is locked as well as its parent page. Functions
findParent and findPath are used to find parent pages, which could be changed
-because of concurrent access. Function pageSplit is reccurrent and could split
+because of concurrent access. Function pageSplit is recurrent and could split
page by more than 2 pages, which could be necessary if keys have different
lengths or more than one key are inserted (in such situation, user defined
function pickSplit cannot guarantee free space on page).