Removed unneeded headers [skip ci]

This commit is contained in:
Andrew Kane
2024-04-22 19:10:50 -07:00
parent bd62561a19
commit 1994fd003a
4 changed files with 0 additions and 6 deletions

View File

@@ -45,6 +45,5 @@ typedef struct HalfVector
HalfVector *InitHalfVector(int dim);
int halfvec_cmp_internal(HalfVector * a, HalfVector * b);
PGDLLEXPORT Datum halfvec_l2_normalize(PG_FUNCTION_ARGS);
#endif

View File

@@ -6,7 +6,6 @@
#include "catalog/pg_type.h"
#include "catalog/pg_type_d.h"
#include "fmgr.h"
#include "halfvec.h"
#include "hnsw.h"
#include "lib/pairingheap.h"
#include "sparsevec.h"
@@ -15,7 +14,6 @@
#include "utils/memdebug.h"
#include "utils/rel.h"
#include "utils/syscache.h"
#include "vector.h"
#if PG_VERSION_NUM >= 130000
#include "common/hashfn.h"

View File

@@ -3,10 +3,8 @@
#include "access/generic_xlog.h"
#include "catalog/pg_type.h"
#include "fmgr.h"
#include "halfvec.h"
#include "ivfflat.h"
#include "storage/bufmgr.h"
#include "vector.h"
#include "utils/syscache.h"
/*

View File

@@ -23,6 +23,5 @@ typedef struct SparseVector
} SparseVector;
SparseVector *InitSparseVector(int dim, int nnz);
PGDLLEXPORT Datum sparsevec_l2_normalize(PG_FUNCTION_ARGS);
#endif