diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-08-21 17:03:35 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-08-21 17:04:08 -0300 |
commit | 5065596e510f899122c1189de23af56c4953e2e0 (patch) | |
tree | 85a93911ceb19ce8d334e5986ae400e384bb5879 /src | |
parent | 69183651118e39512f37e9ca246b6bf4c648bb63 (diff) | |
download | postgresql-5065596e510f899122c1189de23af56c4953e2e0.tar.gz postgresql-5065596e510f899122c1189de23af56c4953e2e0.zip |
fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/hash/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/hash/README b/src/backend/access/hash/README index 21b4a82b0b0..2227ebfe9b2 100644 --- a/src/backend/access/hash/README +++ b/src/backend/access/hash/README @@ -173,7 +173,7 @@ where a given tuple ought to be located. To do this, we need the bucket count, highmask, and lowmask from the metapage; however, it's undesirable for performance reasons to have to have to lock and pin the metapage for every such operation. Instead, we retain a cached copy of the metapage -in each each backend's relcache entry. This will produce the correct +in each backend's relcache entry. This will produce the correct bucket mapping as long as the target bucket hasn't been split since the last cache refresh. |