mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Rename MemoryContextCopySetIdentifier() for clarity
MemoryContextCopySetIdentifier -> MemoryContextCopyAndSetIdentifier Discussion: https://www.postgresql.org/message-id/6421.1522194949@sss.pgh.pa.us
This commit is contained in:
2
src/backend/utils/cache/plancache.c
vendored
2
src/backend/utils/cache/plancache.c
vendored
@ -952,7 +952,7 @@ BuildCachedPlan(CachedPlanSource *plansource, List *qlist,
|
||||
plan_context = AllocSetContextCreate(CurrentMemoryContext,
|
||||
"CachedPlan",
|
||||
ALLOCSET_START_SMALL_SIZES);
|
||||
MemoryContextCopySetIdentifier(plan_context, plansource->query_string);
|
||||
MemoryContextCopyAndSetIdentifier(plan_context, plansource->query_string);
|
||||
|
||||
/*
|
||||
* Copy plan into the new context.
|
||||
|
8
src/backend/utils/cache/relcache.c
vendored
8
src/backend/utils/cache/relcache.c
vendored
@ -741,7 +741,7 @@ RelationBuildRuleLock(Relation relation)
|
||||
"relation rules",
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
relation->rd_rulescxt = rulescxt;
|
||||
MemoryContextCopySetIdentifier(rulescxt,
|
||||
MemoryContextCopyAndSetIdentifier(rulescxt,
|
||||
RelationGetRelationName(relation));
|
||||
|
||||
/*
|
||||
@ -918,7 +918,7 @@ RelationBuildPartitionKey(Relation relation)
|
||||
partkeycxt = AllocSetContextCreate(CurTransactionContext,
|
||||
"partition key",
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
MemoryContextCopySetIdentifier(partkeycxt,
|
||||
MemoryContextCopyAndSetIdentifier(partkeycxt,
|
||||
RelationGetRelationName(relation));
|
||||
|
||||
key = (PartitionKey) MemoryContextAllocZero(partkeycxt,
|
||||
@ -1601,7 +1601,7 @@ RelationInitIndexAccessInfo(Relation relation)
|
||||
"index info",
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
relation->rd_indexcxt = indexcxt;
|
||||
MemoryContextCopySetIdentifier(indexcxt,
|
||||
MemoryContextCopyAndSetIdentifier(indexcxt,
|
||||
RelationGetRelationName(relation));
|
||||
|
||||
/*
|
||||
@ -5668,7 +5668,7 @@ load_relcache_init_file(bool shared)
|
||||
"index info",
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
rel->rd_indexcxt = indexcxt;
|
||||
MemoryContextCopySetIdentifier(indexcxt,
|
||||
MemoryContextCopyAndSetIdentifier(indexcxt,
|
||||
RelationGetRelationName(rel));
|
||||
|
||||
/*
|
||||
|
4
src/backend/utils/cache/ts_cache.c
vendored
4
src/backend/utils/cache/ts_cache.c
vendored
@ -297,7 +297,7 @@ lookup_ts_dictionary_cache(Oid dictId)
|
||||
saveCtx = AllocSetContextCreate(CacheMemoryContext,
|
||||
"TS dictionary",
|
||||
ALLOCSET_SMALL_SIZES);
|
||||
MemoryContextCopySetIdentifier(saveCtx, NameStr(dict->dictname));
|
||||
MemoryContextCopyAndSetIdentifier(saveCtx, NameStr(dict->dictname));
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -306,7 +306,7 @@ lookup_ts_dictionary_cache(Oid dictId)
|
||||
/* Don't let context's ident pointer dangle while we reset it */
|
||||
MemoryContextSetIdentifier(saveCtx, NULL);
|
||||
MemoryContextReset(saveCtx);
|
||||
MemoryContextCopySetIdentifier(saveCtx, NameStr(dict->dictname));
|
||||
MemoryContextCopyAndSetIdentifier(saveCtx, NameStr(dict->dictname));
|
||||
}
|
||||
|
||||
MemSet(entry, 0, sizeof(TSDictionaryCacheEntry));
|
||||
|
Reference in New Issue
Block a user