mirror of https://github.com/citusdata/citus.git
Fixes pg14 compile error
parent
ff19400238
commit
1842c2e3b6
|
@ -172,11 +172,13 @@ static const NonMainDbDistributeObjectOps Any_AlterDatabaseSet = {
|
||||||
.cannotBeExecutedInTransaction = true
|
.cannotBeExecutedInTransaction = true
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if PG_VERSION_NUM >= PG_VERSION_15
|
||||||
static const NonMainDbDistributeObjectOps Any_AlterDatabaseRefreshColl = {
|
static const NonMainDbDistributeObjectOps Any_AlterDatabaseRefreshColl = {
|
||||||
.getMarkDistributedParams = NULL,
|
.getMarkDistributedParams = NULL,
|
||||||
.getUnmarkDistributedParams = NULL,
|
.getUnmarkDistributedParams = NULL,
|
||||||
.cannotBeExecutedInTransaction = false
|
.cannotBeExecutedInTransaction = false
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static const NonMainDbDistributeObjectOps Database_Grant = {
|
static const NonMainDbDistributeObjectOps Database_Grant = {
|
||||||
.getMarkDistributedParams = NULL,
|
.getMarkDistributedParams = NULL,
|
||||||
|
|
Loading…
Reference in New Issue