mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
pgindent run for 9.4
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
This commit is contained in:
@ -177,7 +177,7 @@ ResourceOwnerCreate(ResourceOwner parent, const char *name)
|
||||
* but don't delete the owner objects themselves.
|
||||
*
|
||||
* Note that this executes just one phase of release, and so typically
|
||||
* must be called three times. We do it this way because (a) we want to
|
||||
* must be called three times. We do it this way because (a) we want to
|
||||
* do all the recursion separately for each phase, thereby preserving
|
||||
* the needed order of operations; and (b) xact.c may have other operations
|
||||
* to do between the phases.
|
||||
@ -251,7 +251,7 @@ ResourceOwnerReleaseInternal(ResourceOwner owner,
|
||||
*
|
||||
* During a commit, there shouldn't be any remaining pins --- that
|
||||
* would indicate failure to clean up the executor correctly --- so
|
||||
* issue warnings. In the abort case, just clean up quietly.
|
||||
* issue warnings. In the abort case, just clean up quietly.
|
||||
*
|
||||
* We are careful to do the releasing back-to-front, so as to avoid
|
||||
* O(N^2) behavior in ResourceOwnerForgetBuffer().
|
||||
@ -439,7 +439,7 @@ ResourceOwnerDelete(ResourceOwner owner)
|
||||
/*
|
||||
* We delink the owner from its parent before deleting it, so that if
|
||||
* there's an error we won't have deleted/busted owners still attached to
|
||||
* the owner tree. Better a leak than a crash.
|
||||
* the owner tree. Better a leak than a crash.
|
||||
*/
|
||||
ResourceOwnerNewParent(owner, NULL);
|
||||
|
||||
@ -633,7 +633,7 @@ ResourceOwnerForgetBuffer(ResourceOwner owner, Buffer buffer)
|
||||
|
||||
/*
|
||||
* Scan back-to-front because it's more likely we are releasing a
|
||||
* recently pinned buffer. This isn't always the case of course, but
|
||||
* recently pinned buffer. This isn't always the case of course, but
|
||||
* it's the way to bet.
|
||||
*/
|
||||
for (i = nb1; i >= 0; i--)
|
||||
|
Reference in New Issue
Block a user