summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2017-05-22 07:10:02 +0000
committerMagnus Hagander2017-05-22 07:10:02 +0000
commit312bac54cc9cc26e9cee23033c5c4f029976753a (patch)
tree5b3d6716881fc8adb6ed883fa7c830f9bac115d9
parentd761fe2182d9e26f9483e4b7ac303e38bfbd7a24 (diff)
Fix typo in comment
Author: Masahiko Sawada
-rw-r--r--src/backend/access/hash/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/hash/hash.c b/src/backend/access/hash/hash.c
index d0b0547491..8a3297924f 100644
--- a/src/backend/access/hash/hash.c
+++ b/src/backend/access/hash/hash.c
@@ -843,7 +843,7 @@ hashbucketcleanup(Relation rel, Bucket cur_bucket, Buffer bucket_buf,
if (bucket != cur_bucket)
{
/*
- * We expect tuples to either belong to curent bucket or
+ * We expect tuples to either belong to current bucket or
* new_bucket. This is ensured because we don't allow
* further splits from bucket that contains garbage. See
* comments in _hash_expandtable.