Fix pg_control_checkpoint from commit 4b0d28de06

Author: Simon Riggs <simon@2ndQuadrant.com>
Reported-By: Andreas Seltenreich <seltenreich@gmx.de>
This commit is contained in:
Simon Riggs 2017-11-21 08:00:54 +11:00
parent 0510421ee0
commit 2ede45c3a4

View File

@ -90,7 +90,7 @@ pg_control_checkpoint(PG_FUNCTION_ARGS)
* Construct a tuple descriptor for the result row. This must match this * Construct a tuple descriptor for the result row. This must match this
* function's pg_proc entry! * function's pg_proc entry!
*/ */
tupdesc = CreateTemplateTupleDesc(19, false); tupdesc = CreateTemplateTupleDesc(18, false);
TupleDescInitEntry(tupdesc, (AttrNumber) 1, "checkpoint_lsn", TupleDescInitEntry(tupdesc, (AttrNumber) 1, "checkpoint_lsn",
LSNOID, -1, 0); LSNOID, -1, 0);
TupleDescInitEntry(tupdesc, (AttrNumber) 2, "redo_lsn", TupleDescInitEntry(tupdesc, (AttrNumber) 2, "redo_lsn",