rmgr_mock.c 420 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * This is a mock version of src/backend/access/transam/rmgr.c. The real
 * rmgr.c contains a table of the WAL redo/desc functions for all the WAL
 * record types. Leave out the table, so that we can leave out the AM
 * object files, which helps to cut down the size of the test programs.
 */
#include "postgres.h"

#include "access/rmgr.h"
#include "access/xlog_internal.h"

const RmgrData RmgrTable[RM_MAX_ID + 1];