dropVectorIndex method
Remove the vector index on table.column, if any. Returns true
when a binding was actually dropped.
Implementation
bool dropVectorIndex(String table, String column) {
final key = '${table.toLowerCase()}:${column.toLowerCase()}';
return _vectorIndexes.remove(key) != null;
}