Improved warning check [skip ci]

This commit is contained in:
Andrew Kane
2025-04-05 12:38:30 -07:00
parent 32e95a8598
commit 35f4f7fc80
2 changed files with 2 additions and 2 deletions

View File

@@ -223,7 +223,7 @@ hnswcostestimate(PlannerInfo *root, IndexPath *path, double loop_count,
static bytea * static bytea *
hnswoptions(Datum reloptions, bool validate) hnswoptions(Datum reloptions, bool validate)
{ {
#if PG_VERSION_NUM >= 180000 #if PG_VERSION_NUM >= 180000 && defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wmissing-field-initializers" #pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif #endif
static const relopt_parse_elt tab[] = { static const relopt_parse_elt tab[] = {

View File

@@ -151,7 +151,7 @@ ivfflatcostestimate(PlannerInfo *root, IndexPath *path, double loop_count,
static bytea * static bytea *
ivfflatoptions(Datum reloptions, bool validate) ivfflatoptions(Datum reloptions, bool validate)
{ {
#if PG_VERSION_NUM >= 180000 #if PG_VERSION_NUM >= 180000 && defined(__GNUC__)
#pragma GCC diagnostic ignored "-Wmissing-field-initializers" #pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif #endif
static const relopt_parse_elt tab[] = { static const relopt_parse_elt tab[] = {