blob: 587030e7701acace88afd14c4be1ef9cef4bf58d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "pg_compat.h"
extern "C" {
#include "access/xlog.h"
#include "utils/inval.h"
}
bool RecoveryInProgress() {
return false;
}
void AcceptInvalidationMessages() {
}
|