Fix style

velioglu/wo_seq_test_1
Burak Velioglu 2022-01-20 01:05:06 +03:00
parent d93b46559e
commit a46ae3bee0
No known key found for this signature in database
GPG Key ID: F6827E620F6549C6
1 changed files with 2 additions and 3 deletions

View File

@ -1026,11 +1026,10 @@ GetRelationSequenceDependencyList(Oid relationId)
{ {
List *attnumList = NIL; List *attnumList = NIL;
List *dependentSequenceList = NIL; List *dependentSequenceList = NIL;
List *sequenceDependencyDefList = NIL;
GetDependentSequencesWithRelation(relationId, &attnumList, &dependentSequenceList, 0); GetDependentSequencesWithRelation(relationId, &attnumList, &dependentSequenceList, 0);
sequenceDependencyDefList = CreateObjectAddressDependencyDefList(RelationRelationId, List *sequenceDependencyDefList =
dependentSequenceList); CreateObjectAddressDependencyDefList(RelationRelationId, dependentSequenceList);
return sequenceDependencyDefList; return sequenceDependencyDefList;
} }