Renamed functions [skip ci]

This commit is contained in:
Andrew Kane
2024-04-24 15:00:36 -07:00
parent 3eef1ff5c2
commit 7ac0ac5a7f
4 changed files with 55 additions and 55 deletions

View File

@@ -246,16 +246,16 @@ IvfflatUpdateList(Relation index, ListInfo listInfo,
}
}
PGDLLEXPORT PG_FUNCTION_INFO_V1(halfvec_ivfflat_support);
PGDLLEXPORT PG_FUNCTION_INFO_V1(ivfflat_halfvec_support);
Datum
halfvec_ivfflat_support(PG_FUNCTION_ARGS)
ivfflat_halfvec_support(PG_FUNCTION_ARGS)
{
PG_RETURN_INT32(IVFFLAT_TYPE_HALFVEC);
};
PGDLLEXPORT PG_FUNCTION_INFO_V1(bit_ivfflat_support);
PGDLLEXPORT PG_FUNCTION_INFO_V1(ivfflat_bit_support);
Datum
bit_ivfflat_support(PG_FUNCTION_ARGS)
ivfflat_bit_support(PG_FUNCTION_ARGS)
{
Oid typid = PG_GETARG_OID(0);