dropVectorIndex method

bool dropVectorIndex(
  1. String table,
  2. String column
)

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;
}