aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlogreader.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/access/transam/xlogreader.c')
-rw-r--r--src/backend/access/transam/xlogreader.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c
index c5a964ad8ba..c3aecc75746 100644
--- a/src/backend/access/transam/xlogreader.c
+++ b/src/backend/access/transam/xlogreader.c
@@ -118,11 +118,6 @@ XLogReaderAllocate(XLogPageReadCB pagereadfunc, void *private_data)
return NULL;
}
-#ifndef FRONTEND
- /* Will be loaded on first read */
- state->timelineHistory = NIL;
-#endif
-
return state;
}
@@ -142,10 +137,6 @@ XLogReaderFree(XLogReaderState *state)
pfree(state->errormsg_buf);
if (state->readRecordBuf)
pfree(state->readRecordBuf);
-#ifndef FRONTEND
- if (state->timelineHistory)
- list_free_deep(state->timelineHistory);
-#endif
pfree(state->readBuf);
pfree(state);
}