diff options
author | Neil Conway <neilc@samurai.com> | 2005-05-10 05:15:07 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2005-05-10 05:15:07 +0000 |
commit | dc5ebcfcce73228a164649fd24bfcd3d3830d61f (patch) | |
tree | 8516d5ada6b890131a9355e7501b461f43b875bf | |
parent | 29873379deace60e264336910801dd561e9ff865 (diff) | |
download | postgresql-dc5ebcfcce73228a164649fd24bfcd3d3830d61f.tar.gz postgresql-dc5ebcfcce73228a164649fd24bfcd3d3830d61f.zip |
Fix typo in comment.
-rw-r--r-- | src/backend/access/hash/hashpage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/hash/hashpage.c b/src/backend/access/hash/hashpage.c index 179c5d689a3..58478b18000 100644 --- a/src/backend/access/hash/hashpage.c +++ b/src/backend/access/hash/hashpage.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/hash/hashpage.c,v 1.47 2004/12/31 21:59:13 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/access/hash/hashpage.c,v 1.48 2005/05/10 05:15:07 neilc Exp $ * * NOTES * Postgres hash pages look like ordinary relation pages. The opaque @@ -388,7 +388,7 @@ _hash_expandtable(Relation rel, Buffer metabuf) * Check to see if split is still needed; someone else might have * already done one while we waited for the lock. * - * Make sure this stays in sync with_hash_doinsert() + * Make sure this stays in sync with _hash_doinsert() */ if (metap->hashm_ntuples <= (double) metap->hashm_ffactor * (metap->hashm_maxbucket + 1)) |