diff --git a/src/hnsw.c b/src/hnsw.c index 5d16ae3..ec7c988 100644 --- a/src/hnsw.c +++ b/src/hnsw.c @@ -223,9 +223,6 @@ hnswcostestimate(PlannerInfo *root, IndexPath *path, double loop_count, static bytea * hnswoptions(Datum reloptions, bool validate) { -#if PG_VERSION_NUM >= 180000 && defined(__GNUC__) -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif static const relopt_parse_elt tab[] = { {"m", RELOPT_TYPE_INT, offsetof(HnswOptions, m)}, {"ef_construction", RELOPT_TYPE_INT, offsetof(HnswOptions, efConstruction)}, diff --git a/src/ivfflat.c b/src/ivfflat.c index 3ff0299..736d537 100644 --- a/src/ivfflat.c +++ b/src/ivfflat.c @@ -151,9 +151,6 @@ ivfflatcostestimate(PlannerInfo *root, IndexPath *path, double loop_count, static bytea * ivfflatoptions(Datum reloptions, bool validate) { -#if PG_VERSION_NUM >= 180000 && defined(__GNUC__) -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif static const relopt_parse_elt tab[] = { {"lists", RELOPT_TYPE_INT, offsetof(IvfflatOptions, lists)}, };