Skip to content
Snippets Groups Projects
Commit dc5ebcfc authored by Neil Conway's avatar Neil Conway
Browse files

Fix typo in comment.

parent 29873379
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * 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 * NOTES
* Postgres hash pages look like ordinary relation pages. The opaque * Postgres hash pages look like ordinary relation pages. The opaque
...@@ -388,7 +388,7 @@ _hash_expandtable(Relation rel, Buffer metabuf) ...@@ -388,7 +388,7 @@ _hash_expandtable(Relation rel, Buffer metabuf)
* Check to see if split is still needed; someone else might have * Check to see if split is still needed; someone else might have
* already done one while we waited for the lock. * 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 <= if (metap->hashm_ntuples <=
(double) metap->hashm_ffactor * (metap->hashm_maxbucket + 1)) (double) metap->hashm_ffactor * (metap->hashm_maxbucket + 1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment