mirror of
https://github.com/pgvector/pgvector.git
synced 2026-07-04 03:30:56 +08:00
Added VectorArrayFree
This commit is contained in:
@@ -18,6 +18,15 @@ VectorArrayInit(int maxlen, int dimensions)
|
||||
return res;
|
||||
}
|
||||
|
||||
/*
|
||||
* Free a vector array
|
||||
*/
|
||||
void
|
||||
VectorArrayFree(VectorArray arr)
|
||||
{
|
||||
pfree(arr);
|
||||
}
|
||||
|
||||
/*
|
||||
* Print vector array - useful for debugging
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user