Restored HnswNormValue [skip ci]

This commit is contained in:
Andrew Kane
2024-04-25 13:35:17 -07:00
parent 58ec5296b0
commit 38e365ed58
5 changed files with 13 additions and 3 deletions

View File

@@ -630,7 +630,7 @@ HnswInsertTuple(Relation index, Datum *values, bool *isnull, ItemPointer heap_ti
if (!HnswCheckNorm(normprocinfo, collation, value))
return;
value = DirectFunctionCall1(typeInfo->normalize, value);
value = HnswNormValue(typeInfo, value);
}
HnswInsertTupleOnDisk(index, value, values, isnull, heap_tid, false);