Skip to content

Commit

Permalink
Merge pull request #127070 from cockroachdb/blathers/backport-release…
Browse files Browse the repository at this point in the history
…-24.2-127041

release-24.2: roachtest: fix multi-store-remove
  • Loading branch information
nicktrav authored Sep 11, 2024
2 parents 22ddd9b + 054538f commit 1f44847
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/cmd/roachtest/tests/multi_store_remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const (
func registerMultiStoreRemove(r registry.Registry) {
r.Add(registry.TestSpec{
Name: "multi-store-remove",
Skip: "#123989",
Owner: registry.OwnerStorage,
Cluster: r.MakeClusterSpec(multiStoreNodes, spec.SSD(multiStoreStoresPerNode)),
CompatibleClouds: registry.OnlyGCE,
Expand Down Expand Up @@ -144,7 +143,7 @@ func runMultiStoreRemove(ctx context.Context, t test.Test, c cluster.Cluster) {
if err := conn.QueryRowContext(ctx,
`SELECT
(SELECT count(1) FROM crdB_internal.ranges) AS ranges
, (SELECT count(range_count) FROM crdb_internal.kv_store_status) AS replicas`,
, (SELECT sum(range_count) FROM crdb_internal.kv_store_status) AS replicas`,
).Scan(&ranges, &replicas); err != nil {
t.Fatalf("replication status: %s", err)
}
Expand Down

0 comments on commit 1f44847

Please sign in to comment.