Commit 05ee328d authored by Robert Haas's avatar Robert Haas

Fix typo in comment.

Etsuro Fujita
parent 43f63889
...@@ -2221,7 +2221,7 @@ DropRelFileNodesAllBuffers(RelFileNodeBackend *rnodes, int nnodes) ...@@ -2221,7 +2221,7 @@ DropRelFileNodesAllBuffers(RelFileNodeBackend *rnodes, int nnodes)
/* /*
* For low number of relations to drop just use a simple walk through, to * For low number of relations to drop just use a simple walk through, to
* save the bsearch overhead. The threshold to use is rather a guess than * save the bsearch overhead. The threshold to use is rather a guess than
* a exactly determined value, as it depends on many factors (CPU and RAM * an exactly determined value, as it depends on many factors (CPU and RAM
* speeds, amount of shared buffers etc.). * speeds, amount of shared buffers etc.).
*/ */
use_bsearch = n > DROP_RELS_BSEARCH_THRESHOLD; use_bsearch = n > DROP_RELS_BSEARCH_THRESHOLD;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment