Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/pg_pathman.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ estimate_paramsel_using_prel(const PartRelationInfo *prel, int strategy)
else return 1.0;
}

#if defined(PGPRO_EE) && PG_VERSION_NUM >= 130000
#if defined(PGPRO_EE) && PG_VERSION_NUM >= 100000
/*
* Reset cache at start and at finish ATX transaction
*/
Expand Down Expand Up @@ -357,7 +357,7 @@ _PG_init(void)
init_partition_router_static_data();
init_partition_overseer_static_data();

#if defined(PGPRO_EE) && PG_VERSION_NUM >= 130000
#if defined(PGPRO_EE) && PG_VERSION_NUM >= 100000
/* Callbacks for reload relcache for ATX transactions */
RegisterXactCallback(pathman_xact_cb, NULL);
#endif
Expand Down