Improvements
- NULL Support:
NULL
can now be safely inserted into vector columns without error. They will be skipped duringpgvecto.rs
index creation, but exist in the table. A query on a vector column will never return a result containing aNULL
. - Signal Handler Fix: Now we use
SIGQUIT
instead ofSIGHUP
to trigger a peaceful exit, sinceSIGHUP
is defined as configure reload byPostgres
. - Upgrade Script Refine: Due to some symbol renaming, the upgrade path from
v0.1.10
tov0.2.0
is broken. Users can now upgrade directly tov0.2.1
if they are currently usingv0.1.10
.