From 0ef0b6784c7d7258cae314cb46558873edaf9c0a Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Sat, 14 Jun 2014 10:46:48 +0300 Subject: Change the signature of rm_desc so that it's passed a XLogRecord. Just feels more natural, and is more consistent with rm_redo. --- src/include/access/clog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/access/clog.h') diff --git a/src/include/access/clog.h b/src/include/access/clog.h index 66a6d17f18..be9b8675a4 100644 --- a/src/include/access/clog.h +++ b/src/include/access/clog.h @@ -48,6 +48,6 @@ extern void TruncateCLOG(TransactionId oldestXact); #define CLOG_TRUNCATE 0x10 extern void clog_redo(XLogRecPtr lsn, XLogRecord *record); -extern void clog_desc(StringInfo buf, uint8 xl_info, char *rec); +extern void clog_desc(StringInfo buf, XLogRecord *record); #endif /* CLOG_H */ -- cgit v1.2.1