Dropping phase2 from repmgr, it now is an independent tool

called pg_blender
This commit is contained in:
postgres
2010-09-13 10:58:39 -05:00
parent 9f61ea6c5c
commit 7ad17f7f48
5 changed files with 4 additions and 215 deletions

View File

@@ -8,12 +8,10 @@
#include "postgres.h"
#include "fmgr.h"
#include "access/xlog.h"
#include "storage/procarray.h"
PG_MODULE_MAGIC;
Datum last_xlog_replay_timestamp(PG_FUNCTION_ARGS);
Datum oldest_xmin(PG_FUNCTION_ARGS);
PG_FUNCTION_INFO_V1(last_xlog_replay_timestamp);
@@ -31,12 +29,3 @@ bool fromSource;
PG_RETURN_TIMESTAMPTZ(rTime);
}
}
PG_FUNCTION_INFO_V1(oldest_xmin);
Datum
oldest_xmin(PG_FUNCTION_ARGS)
{
PG_RETURN_INT64(GetOldestXmin(false, false));
}