mirror of
https://github.com/pgvector/pgvector.git
synced 2026-07-07 13:10:56 +08:00
Restored collation for consistency [skip ci]
This commit is contained in:
@@ -156,9 +156,9 @@ HnswOptionalProcInfo(Relation index, uint16 procnum)
|
||||
* Normalize value
|
||||
*/
|
||||
Datum
|
||||
HnswNormValue(const HnswTypeInfo * typeInfo, Datum value)
|
||||
HnswNormValue(const HnswTypeInfo * typeInfo, Oid collation, Datum value)
|
||||
{
|
||||
return DirectFunctionCall1(typeInfo->normalize, value);
|
||||
return DirectFunctionCall1Coll(typeInfo->normalize, collation, value);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user