Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b5d69b7

Browse files
committed
pgindent run prior to branching v13.
pgperltidy and reformat-dat-files too, though those didn't find anything to change.
1 parent 7247e24 commit b5d69b7

File tree

6 files changed

+12
-14
lines changed

6 files changed

+12
-14
lines changed

src/backend/jit/llvm/llvmjit_expr.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2448,8 +2448,8 @@ BuildV1Call(LLVMJitContext *context, LLVMBuilderRef b,
24482448
*v_fcinfo_isnull = LLVMBuildLoad(b, v_fcinfo_isnullp, "");
24492449

24502450
/*
2451-
* Add lifetime-end annotation, signaling that writes to memory don't
2452-
* have to be retained (important for inlining potential).
2451+
* Add lifetime-end annotation, signaling that writes to memory don't have
2452+
* to be retained (important for inlining potential).
24532453
*/
24542454
{
24552455
LLVMValueRef v_lifetime = create_LifetimeEnd(mod);

src/backend/optimizer/plan/createplan.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -2118,9 +2118,9 @@ create_agg_plan(PlannerInfo *root, AggPath *best_path)
21182118
/*
21192119
* Agg can project, so no need to be terribly picky about child tlist, but
21202120
* we do need grouping columns to be available. We are a bit more careful
2121-
* with hash aggregate, where we explicitly request small tlist to minimize
2122-
* I/O needed for spilling (we can't be sure spilling won't be necessary,
2123-
* so we just do it every time).
2121+
* with hash aggregate, where we explicitly request small tlist to
2122+
* minimize I/O needed for spilling (we can't be sure spilling won't be
2123+
* necessary, so we just do it every time).
21242124
*/
21252125
flags = CP_LABEL_TLIST;
21262126

@@ -2219,9 +2219,9 @@ create_groupingsets_plan(PlannerInfo *root, GroupingSetsPath *best_path)
22192219
/*
22202220
* Agg can project, so no need to be terribly picky about child tlist, but
22212221
* we do need grouping columns to be available. We are a bit more careful
2222-
* with hash aggregate, where we explicitly request small tlist to minimize
2223-
* I/O needed for spilling (we can't be sure spilling won't be necessary,
2224-
* so we just do it every time).
2222+
* with hash aggregate, where we explicitly request small tlist to
2223+
* minimize I/O needed for spilling (we can't be sure spilling won't be
2224+
* necessary, so we just do it every time).
22252225
*/
22262226
flags = CP_LABEL_TLIST;
22272227

src/backend/postmaster/autovacuum.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -653,8 +653,7 @@ AutoVacLauncherMain(int argc, char *argv[])
653653
HandleAutoVacLauncherInterrupts();
654654

655655
/*
656-
* a worker finished, or postmaster signaled failure to start a
657-
* worker
656+
* a worker finished, or postmaster signaled failure to start a worker
658657
*/
659658
if (got_SIGUSR2)
660659
{

src/backend/utils/sort/logtape.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ typedef struct LogicalTape
170170
* numbers first).
171171
*/
172172
long *prealloc;
173-
int nprealloc; /* number of elements in list */
173+
int nprealloc; /* number of elements in list */
174174
int prealloc_size; /* number of elements list can hold */
175175
} LogicalTape;
176176

src/include/access/tableam.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ typedef struct TableAmRoutine
290290
*
291291
* *call_again is false on the first call to index_fetch_tuple for a tid.
292292
* If there potentially is another tuple matching the tid, *call_again
293-
* needs be set to true by index_fetch_tuple, signaling to the caller
293+
* needs to be set to true by index_fetch_tuple, signaling to the caller
294294
* that index_fetch_tuple should be called again for the same tid.
295295
*
296296
* *all_dead, if all_dead is not NULL, should be set to true by

src/tools/pgindent/typedefs.list

+1-2
Original file line numberDiff line numberDiff line change
@@ -1459,7 +1459,6 @@ OffsetVarNodes_context
14591459
Oid
14601460
OidOptions
14611461
OkeysState
1462-
OldSerXidControl
14631462
OldSnapshotControlData
14641463
OldToNewMapping
14651464
OldToNewMappingData
@@ -1659,7 +1658,7 @@ PQconninfoOption
16591658
PQnoticeProcessor
16601659
PQnoticeReceiver
16611660
PQprintOpt
1662-
PQsslKeyPassHook_type
1661+
PQsslKeyPassHook_OpenSSL_type
16631662
PREDICATELOCK
16641663
PREDICATELOCKTAG
16651664
PREDICATELOCKTARGET

0 commit comments

Comments
 (0)