1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Attempt to fix breakage due to declaration following code.

Per Tom Lane and the buildfarm.
This commit is contained in:
Robert Haas
2016-04-08 10:52:56 -04:00
parent 2f1d2b7a75
commit b0b64f6505

View File

@ -2357,11 +2357,6 @@ inittapes(Tuplesortstate *state)
if (state->replaceActive) if (state->replaceActive)
{ {
#ifdef TRACE_SORT
if (trace_sort)
elog(LOG, "replacement selection will sort %d first run tuples",
state->memtupcount);
#endif
/* /*
* Convert the unsorted contents of memtuples[] into a heap. Each * Convert the unsorted contents of memtuples[] into a heap. Each
* tuple is marked as belonging to run number zero. * tuple is marked as belonging to run number zero.
@ -2372,6 +2367,11 @@ inittapes(Tuplesortstate *state)
*/ */
int ntuples = state->memtupcount; int ntuples = state->memtupcount;
#ifdef TRACE_SORT
if (trace_sort)
elog(LOG, "replacement selection will sort %d first run tuples",
state->memtupcount);
#endif
state->memtupcount = 0; /* make the heap empty */ state->memtupcount = 0; /* make the heap empty */
for (j = 0; j < ntuples; j++) for (j = 0; j < ntuples; j++)