Tous les produits
Search
Centre de documentation

Tablestore:Supprimer un magasin analytique

Dernière mise à jour :Aug 19, 2026

Prérequis

Exemple

func DeleteTimeseriesAnalyticalStore(client *tablestore.TimeseriesClient) {
    //Specify the names of the time series table and analytical store.
    request := tablestore.NewDeleteTimeseriesAnalyticalStoreRequest("test_timeseries_table", "test_analytical_store")
    request.SetDropMappingTable(true)
    _, err := client.DeleteTimeseriesAnalyticalStore(request)
    if err != nil {
        log.Fatal(err)
    }
}