全部产品
Search
文档中心

表格存储:删除多元索引

更新时间:Jun 28, 2024

使用DeleteSearchIndex接口可以删除指定数据表的一个多元索引。

前提条件

注意事项

多元索引删除后不可恢复,请谨慎操作。

参数

参数

说明

TableName

数据表名称。

IndexName

多元索引名称。

示例

以下示例用于删除多元索引。


func DeleteSearchIndex(client *tablestore.TableStoreClient, tableName string, indexName string) {
    request := &tablestore.DeleteSearchIndexRequest{}
    request.TableName = tableName //设置数据表名称。
    request.IndexName = indexName //设置多元索引名称。
    resp, err := client.DeleteSearchIndex(request) //调用client删除多元索引。

    if err != nil {
        fmt.Println("error: ", err)
        return
    }
    fmt.Println("DeleteSearchIndex finished, requestId: ", resp.ResponseInfo.RequestId)
}

相关文档

如果已有多元索引不满足使用需求,您可以创建新的多元索引或者通过修改多元索引的Schema来增删改多元索引字段。具体操作,请参见创建多元索引动态修改schema