Fix typo: GetRelationTriggerFunctionDependencyList (#5626)

pull/5599/head^2
Ahmet Gedemenli 2022-01-17 18:17:07 +03:00 committed by GitHub
parent 8936543b80
commit e564220dd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -120,7 +120,7 @@ typedef struct ViewDependencyNode
}ViewDependencyNode; }ViewDependencyNode;
static List * GetRelationTriggerFunctionDepencyList(Oid relationId); static List * GetRelationTriggerFunctionDependencyList(Oid relationId);
static List * GetRelationStatsSchemaDependencyList(Oid relationId); static List * GetRelationStatsSchemaDependencyList(Oid relationId);
static DependencyDefinition * CreateObjectAddressDependencyDef(Oid classId, Oid objectId); static DependencyDefinition * CreateObjectAddressDependencyDef(Oid classId, Oid objectId);
static List * CreateObjectAddressDependencyDefList(Oid classId, List *objectIdList); static List * CreateObjectAddressDependencyDefList(Oid classId, List *objectIdList);
@ -972,7 +972,7 @@ ExpandCitusSupportedTypes(ObjectAddressCollector *collector, ObjectAddress targe
*/ */
Oid relationId = target.objectId; Oid relationId = target.objectId;
List *triggerFunctionDepencyList = List *triggerFunctionDepencyList =
GetRelationTriggerFunctionDepencyList(relationId); GetRelationTriggerFunctionDependencyList(relationId);
result = list_concat(result, triggerFunctionDepencyList); result = list_concat(result, triggerFunctionDepencyList);
/* /*
@ -1011,11 +1011,11 @@ GetRelationStatsSchemaDependencyList(Oid relationId)
/* /*
* GetRelationTriggerFunctionDepencyList returns a list of DependencyDefinition * GetRelationTriggerFunctionDependencyList returns a list of DependencyDefinition
* objects for the functions that triggers of the relation with relationId depends. * objects for the functions that triggers of the relation with relationId depends.
*/ */
static List * static List *
GetRelationTriggerFunctionDepencyList(Oid relationId) GetRelationTriggerFunctionDependencyList(Oid relationId)
{ {
List *dependencyList = NIL; List *dependencyList = NIL;