mirror of
https://github.com/postgres/postgres.git
synced 2025-11-13 16:22:44 +03:00
Rename pending_list_cleanup_size to gin_pending_list_limit.
Since this parameter is only for GIN index, it's better to add "gin" to the parameter name for easier understanding.
This commit is contained in:
@@ -218,7 +218,7 @@ static relopt_int intRelOpts[] =
|
||||
},
|
||||
{
|
||||
{
|
||||
"pending_list_cleanup_size",
|
||||
"gin_pending_list_limit",
|
||||
"Maximum size of the pending list for this GIN index, in kilobytes.",
|
||||
RELOPT_KIND_GIN
|
||||
},
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
#include "utils/rel.h"
|
||||
|
||||
/* GUC parameter */
|
||||
int pending_list_cleanup_size = 0;
|
||||
int gin_pending_list_limit = 0;
|
||||
|
||||
#define GIN_PAGE_FREESIZE \
|
||||
( BLCKSZ - MAXALIGN(SizeOfPageHeaderData) - MAXALIGN(sizeof(GinPageOpaqueData)) )
|
||||
@@ -426,7 +426,7 @@ ginHeapTupleFastInsert(GinState *ginstate, GinTupleCollector *collector)
|
||||
* call it when it can do all the work in a single collection cycle. In
|
||||
* non-vacuum mode, it shouldn't require maintenance_work_mem, so fire it
|
||||
* while pending list is still small enough to fit into
|
||||
* pending_list_cleanup_size.
|
||||
* gin_pending_list_limit.
|
||||
*
|
||||
* ginInsertCleanup() should not be called inside our CRIT_SECTION.
|
||||
*/
|
||||
|
||||
@@ -526,7 +526,7 @@ ginoptions(PG_FUNCTION_ARGS)
|
||||
int numoptions;
|
||||
static const relopt_parse_elt tab[] = {
|
||||
{"fastupdate", RELOPT_TYPE_BOOL, offsetof(GinOptions, useFastUpdate)},
|
||||
{"pending_list_cleanup_size", RELOPT_TYPE_INT, offsetof(GinOptions,
|
||||
{"gin_pending_list_limit", RELOPT_TYPE_INT, offsetof(GinOptions,
|
||||
pendingListCleanupSize)}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user