mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
0ef0b6784c
Just feels more natural, and is more consistent with rm_redo.
22 lines
369 B
C
22 lines
369 B
C
/*
|
|
* rmgrdesc.h
|
|
*
|
|
* pg_xlogdump resource managers declaration
|
|
*
|
|
* contrib/pg_xlogdump/rmgrdesc.h
|
|
*/
|
|
#ifndef RMGRDESC_H
|
|
#define RMGRDESC_H
|
|
|
|
#include "lib/stringinfo.h"
|
|
|
|
typedef struct RmgrDescData
|
|
{
|
|
const char *rm_name;
|
|
void (*rm_desc) (StringInfo buf, XLogRecord *record);
|
|
} RmgrDescData;
|
|
|
|
extern const RmgrDescData RmgrDescTable[];
|
|
|
|
#endif /* RMGRDESC_H */
|