mirror of
https://github.com/postgres/postgres.git
synced 2025-11-21 00:42:43 +03:00
Initial pgindent and pgperltidy run for v14.
Also "make reformat-dat-files". The only change worthy of note is that pgindent messed up the formatting of launcher.c's struct LogicalRepWorkerId, which led me to notice that that struct wasn't used at all anymore, so I just took it out.
This commit is contained in:
@@ -578,7 +578,7 @@ DeleteInheritsTuple(Oid inhrelid, Oid inhparent, bool expect_detach_pending,
|
||||
parent = ((Form_pg_inherits) GETSTRUCT(inheritsTuple))->inhparent;
|
||||
if (!OidIsValid(inhparent) || parent == inhparent)
|
||||
{
|
||||
bool detach_pending;
|
||||
bool detach_pending;
|
||||
|
||||
detach_pending =
|
||||
((Form_pg_inherits) GETSTRUCT(inheritsTuple))->inhdetachpending;
|
||||
@@ -640,7 +640,7 @@ PartitionHasPendingDetach(Oid partoid)
|
||||
|
||||
while (HeapTupleIsValid(inheritsTuple = systable_getnext(scan)))
|
||||
{
|
||||
bool detached;
|
||||
bool detached;
|
||||
|
||||
detached =
|
||||
((Form_pg_inherits) GETSTRUCT(inheritsTuple))->inhdetachpending;
|
||||
|
||||
Reference in New Issue
Block a user