日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

刪除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)
	}
}