Restored collation for consistency [skip ci]

This commit is contained in:
Andrew Kane
2024-04-25 13:46:45 -07:00
parent 38e365ed58
commit 1fdfff7349
5 changed files with 6 additions and 6 deletions

View File

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