删除Lastpoint索引

当不再需要使用Lastpoint索引获取时序表中各时间线的最新时间点时,您可以使用DeleteTimeseriesLastpointIndex接口删除Lastpoint索引。

注意事项

  • 表格存储Go SDKv1.7.15版本开始支持Lastpoint索引功能。使用该功能时,请确保获取了正确的Go SDK版本。

  • 删除Lastpoint索引前,请确保相应Lastpoint索引未在实际业务中使用。

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

前提条件

参数

参数

说明

timeseriesTableName

时序表名称。

lastpointIndexName

Lastpoint索引名称。

示例

以下示例删除timeseries_table时序表下的Lastpoint索引last_point_index。

func deleteTimeseriesLastpointIndex(client *tablestore.TimeseriesClient) {
	request := tablestore.NewDeleteTimeseriesLastpointIndexRequest("test_timeseries_table", "last_point_index")
	_, err := client.DeleteTimeseriesLastpointIndex(request)
	if err != nil {
		log.Fatal(err)
	}
}