summaryrefslogtreecommitdiff
path: root/src/include/access/clog.h
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-06-14 10:46:48 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-06-14 10:46:48 +0300
commit0ef0b6784c7d7258cae314cb46558873edaf9c0a (patch)
treeb79ffdee4813ef5db62d4aedebe8d5529270eacc /src/include/access/clog.h
parentf3fdd257a430ff581090740570af9f266bb893e3 (diff)
Change the signature of rm_desc so that it's passed a XLogRecord.
Just feels more natural, and is more consistent with rm_redo.
Diffstat (limited to 'src/include/access/clog.h')
-rw-r--r--src/include/access/clog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/clog.h b/src/include/access/clog.h
index 66a6d17f18c..be9b8675a41 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 */