drop_index
Remove an existing index from CockroachDB by specifying its name. Simplifies database optimization and maintenance by eliminating unnecessary indices.
Instructions
Drop an existing index.
Args: index_name (str): Name of the index to drop.
Returns: A success message or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"index_name": {
"title": "Index Name",
"type": "string"
}
},
"required": [
"index_name"
],
"title": "drop_indexArguments",
"type": "object"
}