mirror of
https://github.com/postgres/postgres.git
synced 2025-11-24 00:23:06 +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:
@@ -35,7 +35,7 @@
|
||||
* that have been created or deleted in the current transaction. When
|
||||
* a relation is created, we create the physical file immediately, but
|
||||
* remember it so that we can delete the file again if the current
|
||||
* transaction is aborted. Conversely, a deletion request is NOT
|
||||
* transaction is aborted. Conversely, a deletion request is NOT
|
||||
* executed immediately, but is just entered in the list. When and if
|
||||
* the transaction commits, we can delete the physical file.
|
||||
*
|
||||
@@ -344,7 +344,7 @@ smgrDoPendingDeletes(bool isCommit)
|
||||
if (maxrels == 0)
|
||||
{
|
||||
maxrels = 8;
|
||||
srels = palloc(sizeof(SMgrRelation) * maxrels );
|
||||
srels = palloc(sizeof(SMgrRelation) * maxrels);
|
||||
}
|
||||
else if (maxrels <= nrels)
|
||||
{
|
||||
@@ -378,7 +378,7 @@ smgrDoPendingDeletes(bool isCommit)
|
||||
* *ptr is set to point to a freshly-palloc'd array of RelFileNodes.
|
||||
* If there are no relations to be deleted, *ptr is set to NULL.
|
||||
*
|
||||
* Only non-temporary relations are included in the returned list. This is OK
|
||||
* Only non-temporary relations are included in the returned list. This is OK
|
||||
* because the list is used only in contexts where temporary relations don't
|
||||
* matter: we're either writing to the two-phase state file (and transactions
|
||||
* that have touched temp tables can't be prepared) or we're writing to xlog
|
||||
|
||||
Reference in New Issue
Block a user