Use macro for UpdateProgress

This commit is contained in:
Andrew Kane
2022-02-12 23:56:28 -08:00
parent 41d11c62d6
commit ff400ce5f1

View File

@@ -36,16 +36,11 @@
#define CALLBACK_ITEM_POINTER HeapTuple hup #define CALLBACK_ITEM_POINTER HeapTuple hup
#endif #endif
/*
* Update build phase progress
*/
static inline void
UpdateProgress(int index, int64 val)
{
#if PG_VERSION_NUM >= 120000 #if PG_VERSION_NUM >= 120000
pgstat_progress_update_param(index, val); #define UpdateProgress(index, val) pgstat_progress_update_param(index, val)
#else
#define UpdateProgress(index, val) ((void)val)
#endif #endif
}
/* /*
* Callback for sampling * Callback for sampling