The releases on this page are testing releases, not supported or intended for production environments. The new features and bug fixes noted on this page may not yet be documented across CockroachDB’s documentation.
- CockroachDB self-hosted: All v25.3 testing binaries and Docker images are available for download.
- CockroachDB Advanced: v25.3 testing releases are not yet available.
- CockroachDB Standard and Basic: v25.3 testing releases are not available.
When v25.3 becomes Generally Available (GA), a new v25.3.0 section on this page will describe key features and additional upgrade considerations.
CockroachDB v25.3 is in active development, and the following testing releases are intended for testing and experimentation only, and are not qualified for production environments or eligible for support or uptime SLA commitments. When CockroachDB v25.3 is Generally Available (GA), production releases will also be announced on this page.
- For details about release types, naming, and licensing, refer to the Releases page.
- Be sure to also review the Release Support Policy.
- After downloading a supported CockroachDB binary, learn how to install CockroachDB or upgrade your cluster.
Get future release notes emailed to you:
v25.3.0-alpha.1
Release Date: June 9, 2025
Downloads
CockroachDB v25.3.0-alpha.1 is a testing release. Testing releases are intended for testing and experimentation only, and are not qualified for production environments and not eligible for support or uptime SLA commitments.
Experimental downloads are not qualified for production use and not eligible for support or uptime SLA commitments, whether they are for testing releases or production releases.
Operating System | Architecture | Full executable | SQL-only executable |
---|---|---|---|
Linux | Intel | cockroach-v25.3.0-alpha.1.linux-amd64.tgz (SHA256) |
cockroach-sql-v25.3.0-alpha.1.linux-amd64.tgz (SHA256) |
ARM | cockroach-v25.3.0-alpha.1.linux-arm64.tgz (SHA256) |
cockroach-sql-v25.3.0-alpha.1.linux-arm64.tgz (SHA256) |
|
Mac (Experimental) |
Intel | cockroach-v25.3.0-alpha.1.darwin-10.9-amd64.tgz (SHA256) |
cockroach-sql-v25.3.0-alpha.1.darwin-10.9-amd64.tgz (SHA256) |
ARM | cockroach-v25.3.0-alpha.1.darwin-11.0-arm64.tgz (SHA256) |
cockroach-sql-v25.3.0-alpha.1.darwin-11.0-arm64.tgz (SHA256) |
|
Windows (Experimental) |
Intel | cockroach-v25.3.0-alpha.1.windows-6.2-amd64.zip (SHA256) |
cockroach-sql-v25.3.0-alpha.1.windows-6.2-amd64.zip (SHA256) |
Docker image
Multi-platform images include support for both Intel and ARM. Multi-platform images do not take up additional space on your Docker host.
Within the multi-platform image, both Intel and ARM images are generally available for production use.
To download the Docker image:
docker pull cockroachdb/cockroach-unstable:v25.3.0-alpha.1
Source tag
To view or download the source code for CockroachDB v25.3.0-alpha.1 on Github, visit v25.3.0-alpha.1 source tag.
Security updates
- The client for the sql connection will additionally get a new error if trying to connect with unsupported cipher along with the error in
OPS
channel. * client error:> ./cockroach sql --certs-dir=certs --url "postgresql://root@localhost:26257" # # Welcome to the CockroachDB SQL shell. # All statements must be terminated by a semicolon. # To exit, type: \q. # ERROR: cannot use SSL/TLS with the requested ciphers: presented cipher TLS_AES_128_GCM_SHA256 not in allowed cipher suite list SQLSTATE: 08004 Failed running "sql"
* ops channel error:E250512 06:53:28.160841 24028 1@server/server_sql.go:1977 ⋮ [T1,Vsystem,n1,client=‹127.0.0.1:62122›] 479 serving SQL client conn: presented cipher TLS_AES_128_GCM_SHA256 not in allowed cipher suite list
#146522
General changes
- Enhanced the
/status/v2/hotranges
endpoint by adding two new filtering options:per_node_limit
(int32
): Specifies the maximum number of hot ranges to return per node. Defaults to128
if not set.stats_only
(bool
): When set totrue
, returns only the statistics for hot ranges without fetching descriptor information, such as databases, tables, and indexes. #144091
- Changefeeds now round down the progress of each range to 1 second, in order to cover more ranges in fine-grained checkpointing. #146979
Enterprise edition changes
- Reduced the maximum backoff for changefeed retries from 10 minutes to 1 minute, which results in faster recovery from transient errors. #146448
SQL language changes
- Added a new session variable
create_table_with_schema_locked
, which can be used to ensure all tables created by a session have the storage parameterschema_locked
set. #143892 - The following syntax is now supported:
GRANT ... ON ALL ROUTINES IN SCHEMA ...
;REVOKE ... ON ALL ROUTINES IN SCHEMA ...
;ALTER DEFAULT PRIVILEGES GRANT ... ON ROUTINES ...
;ALTER DEFAULT PRIVIELGES REVOKE ... ON ROUTINES ...
. TheROUTINES
keyword makes the command apply to both functions and stored procedures. Note thatALTER DEFAULT PRIVILEGES ... ON FUNCTIONS
already applied to stored procedures (which aligns with the PostgreSQL behavior), and that is not changing. #144189 - The variable arguments of polymorphic built-in functions (e.g.,
concat
,num_nulls
,format
,concat_ws
, etc.) no longer need to have the same type, matching PostgreSQL behavior. As a result, CockroachDB's type inference engine will no longer be able to infer argument types in some cases where it previously could, and there is a possibility that CockroachDB applications will encounter new errors. The new session variableuse_pre_25_2_variadic_builtins
restores the previous behavior (and limitations). #144522 - Added new cluster settings:
sql.metrics.application_name.enabled
andsql.metrics.database_name.enabled
. These settings default tofalse
and can be set totrue
to display the application name and database name, respectively, on supported metrics. #144610 - Added support for query tagging, which allows users to add query tags to their SQL statements via comments. These query tags are included in:
- All log entries generated during the execution of a SQL statement and are prefixed by
querytag-
. - Traces and are prefixed by
querytag-
. - In the
crdb_internal.cluster_execution_insights
andcrdb_internal.node_execution_insights
virtual tables in a newquery_tags
JSONB column. This feature is disabled by default and can be enabled using thesql.sqlcommenter.enabled
cluster setting. Comments must follow the SQLCommenter specification. #145435 ~~*
and!~~*
are now supported aliases forILIKE
andNOT ILIKE
. #146764~~*
and!~~*
are now supported aliases forILIKE
andNOT ILIKE
. #146764- The
information_schema.triggers
table is now populated with trigger metadata. Users can query this table to see all triggers defined in their database, including the trigger name, timing (BEFORE
/AFTER
), event type (INSERT
/UPDATE
/DELETE
), and associated function. Each trigger event appears as a separate row in the table. #147237 - The
pg_catalog.pg_trigger
table now returns metadata about database triggers. #147248 - Deterministic collations are now supported with LIKE. A deterministic collation considers strings to be equal only if they consist of the same byte sequence. #147045
- Assigning to an element of a composite-typed variable in a PL/pgSQL routine now respects case-sensitivity rules. For example, a field named
"FOO_Bar"
can be assigned likeNEW."FOO_Bar" = 100
. #143579
Operational changes
- Prometheus metrics are now also available at the
/metrics
endpoint, in addition to the existing/_status/vars
endpoint. The new/metrics
endpoint emits statically labeled metrics and will evolve more rapidly as CockroachDB migrates metrics to use labels instead of defining different metric names. For compatibility, users can continue to use/_status/vars
, where metric names will remain stable. #143536 - Added 4 new latency metrics: sql.service.latency.historical, sql.service.latency.consistent, sql.exec.latency.historical, sql.exec.latency.consistent for easier query optimizations. #142826
- Partial index schema changes are supported in replicating tables when logical_replication.consumer.immediate_mode_writer is not set to legacy-kv #144508
- The cluster setting
server.client_cert_expiration_cache.capacity
has been deprecated. The client certificate cache now evicts client certificates based on expiration time. #144181 - Logs for hot ranges (
hot_ranges_stats
events) have been moved to theHEALTH
logging channel. #144567 - Added a new metric,
kv.loadsplitter.cleardirection
, which increments when the load-based splitter observes that more than 80% of replica access samples are moving in a single direction (either left/descending or right/ascending). #143927 - When the
server.telemetry.hot_ranges_stats.enabled
cluster setting is enabled, nodes check for hot ranges every minute instead of every 4 hours. A node logs its hot ranges when any single replica exceeds 250 ms of CPU time per second. In multi-tenant deployments, the check runs every 5 minutes and logs hot ranges for the entire cluster. #144414 - Added the metric
changefeed.checkpoint.timestamp_count
that measures the number of unique timestamps in a changefeed span-level checkpoint. It may be useful to monitor this metric to determine if quantization settings should be changed. #145117 - In a physical cluster replication (PCR) deployment, it is not possible for the standby system virtual cluster, or the reader virtual cluster to upgrade the reader virtual cluster by setting the version cluster setting. It is necessary to:
- Upgrade the standby system virtual cluster.
- Upgrade the primary system virtual cluster.
- Upgrade the primary virtual cluster.
- Wait for the replicated time to advance past the time the primary virtual cluster upgraded.
- Shut down the reader virtual cluster.
- Upgrade the destination host cluster.
- Re-initialize the reader virtual cluster with
ALTER VIRTUAL CLUSTER SET REPLICATION READ VIRTUAL CLUSTER
. #146127
- Added job tracing support to changefeeds. #144412
Command-line changes
- Node attributes (attrs) will now appear in the node status cli command. #143421
- Updated the
\d <table name>
command to show policy and Row Level Security information similar to what is shown in the output ofSHOW CREATE TABLE
. #146215 - Added the
--validate-zip-file
flag tocockroach debug zip
command. This flag performs a quick validation check to ensure that the generated zip file is not corrupted. The flag is enabled by default. #146192 - The SQL shell now supports the compact output mode when
auto_trace
is enabled. #146432
DB Console changes
- Schema insights that recommend replacing an index were previously a two-statement command consisting of a
CREATE INDEX
and aDROP INDEX
statement. When these two DDL statements were run as a single batched command, it was possible for one statement to succeed and one to fail. This is because DDL statements do not have the same atomicity guarantees as other SQL statements in CockroachDB. Index-replacement insights are now a singleCREATE INDEX
statement followed by a comment with additional DDL statements to be run manually: anALTER INDEX ... NOT VISIBLE
statement, which makes the old index invisible to the optimizer, followed by aDROP INDEX
statement that should only be run after making the old index invisible and verifying that workload performance is satisfactory. #144101 - Updated the titles of the disk throughput graphs on the Metrics page Hardware dashboard to display only "Bytes/s" instead of including a specific magnitude, "MiB/s". The titles of the graphs are now “"Disk Read Bytes/s" and "Disk Write Bytes/s". #147462
Bug fixes
- Fixed a bug where using values changefeed.aggregator.flush_jitter, min_checkpoint_frequency such that changefeed.aggregator.flush_jitter * min_checkpoint_frequency < 1 would cause a panic. Jitter will now be disabled in this case. Fixes: #143436 #144304
- Fixed a bug that could cause queries that perform work in parallel to ignore the requested quality-of-service level. Affected operations include lookup joins, DistSQL execution, and foreign-key checks. #144427
- Improve the performance of
SHOW CREATE TABLE
on multi-region databases with large numbers of objects. #144900 - Fixed a bug where running
DROP INDEX
on a hash-sharded index did not properly detect dependencies from functions and procedures on the shard column. This caused theDROP INDEX
statement to fail with an internal validation error. Now the statement returns a correct error message, and usingDROP INDEX ... CASCADE
works as expected by dropping the dependent functions and procedures. #145107 - Fixed a bug that prevented variable references using ordinal syntax (like
$1
) from reflecting updates to the variable. Referencing variables declared in PL/pgSQL blocks (instead of parameters) via ordinal syntax is now disallowed. The bug had existed since v24.1. #144347 - Fixed a bug that prevented variable references using ordinal syntax (like
$1
) from reflecting updates to the variable. Referencing variables declared in PL/pgSQL blocks (instead of parameters) via ordinal syntax is now disallowed. The bug had existed since v24.1. #144347 - Fixed a bug that caused index expression elements of primary keys to be shown incorrectly in the output of
SHOW CREATE TABLE
. #144716 - Fixed a bug that could lead to schema changes hanging after a cluster recovered from availability issues. #145462
- Previously, on a table with multiple column families, CockroachDB could encounter a
Non-nullable column "‹×›:‹×›" with no value
error in rare cases during table statistics collection. The bug was present since v19.2 and is now fixed. #145481 - Fixed a bug that could cause a row-level TTL job to fail with the error "comparison of two different versions of enum" if an
ENUM
type referenced by the table experienced a schema change. #145374 - Fixed a bug where the physical cluster replication (PCR) reader catalog job could hit validation errors when schema objects had dependencies between them (for example, when a sequence's default expression was being removed). #145972
- Creating a vector index on a table that contains a
NULL
vector value will no longer cause an internal error. #145983 - Fixed an internal assertion failure that could occur during operations like
ALTER TYPE
orALTER DATABASE ... ADD REGION
when temporary tables were present. #145551 - Row-level security (RLS)
SELECT
policies duringUPDATE
operations are now only applied when referenced columns appear in theSET
orWHERE
clauses, matching the behavior of PostgreSQL. This improves compatibility. #145344 - Fixed an issue where using inline log configuration could cause internal errors on the DB Console's Logs page for a node at
#/node/{nodeID}/logs
. #145329 - Fixed an integer overflow in the
split_part
function when using extremely negative field positions like Go'smath.MinInt64
. #146271 - Fixed incorrect application of SELECT policies to RETURNING clauses in INSERT and UPDATE when no table columns were referenced. #145890
- Fixed a bug that prevented
TRUNCATE
from succeeding if any indexes on the table had back-reference dependencies, such as from a view or function referencing the index. #146287 - Fixed a bug where
ALTER TABLE
operations with multiple commands could generate invalid zone configurations. #146369 - Fixed a bug where an invalid comment in the
system.comment
table for a schema object could make it inacessible. #146213 - Fixed a bug where a CockroachDB node could crash when executing
DO
statements that contain currently unsupported DDL statements likeCREATE TYPE
in a non-default configuration (additional logging needed to be enabled, e.g., via thesql.log.all_statements.enabled
cluster setting). This bug was introduced in v25.1. #146406 - Prevent use of future timestamps when using
AS OF SYSTEM TIME
withCREATE TABLE ... AS
and materialized views. Previously, such timestamps could cause errors, delays, or hangs. #146446 - Fixed an internal error that could be hit when
ADD COLUMN UNIQUE
andALTER PRIMARY KEY
were executed within the same transaction. #146567 - Fixed a bug that prevented temporary views and sequences from being created if the
pg_temp
schema was explicitly specified in the qualified name of the object being created. #146586 - Fixed a bug where CockroachDB would not use the vectorized fast path for
COPY
when it was supported. The bug was only present in previous v25.2 releases. #146696 - Errors triggered by DB Console activity no longer cause the node to crash. #145563
- Prevents HTTP connections from stopping server shutdown. #146744
- The MVCC timestamp is now emitted correctly when the
mvcc_timestamp
is used with CDC queries. #146836 - Fixed a bug in v25.2.0 where a vector search operator could drop user-supplied filters if the same vector column was indexed twice and a vector index with no prefix columns was defined after a vector index with prefix columns. #146259
- Fixed a bug that could cause the
cockroach
process tosegfault
when collecting runtime execution traces (typically collected via the Advanced Debug page in the Console). #146883 - Fixed a data race in the
cloudstorage
sink. #146297 - Fixed a bug where the
kv.rangefeed.closed_timestamp.slow_ranges
would not be incremented when a rangefeed closed timestamp was slower than the target threshold. #146949 - Fixed a bug that could cause an
AFTER
trigger to fail withclient already committed or rolled back the transaction
if the query also contained foreign-key cascades. The bug had existed sinceAFTER
triggers were introduced in v24.3. #146890 - Prevent dropping columns or indexes that are still referenced by triggers. Previously, these operations could succeed silently, potentially breaking trigger functionality. #146683
- Fixed a bug where searching a vector with a query vector that doesn't match the dimensions of the vector column in the table would cause a node to crash. #146848
- Specifying types for a subset of columns in a generator function's column definition list now results in a syntax error instead of an internal error. #145492
- Fixed a bug that caused the SQL Activity > Statement Fingerprint page to fail to load details for statements run with application names containing a
#
character. #147021 - CockroachDB could previously incorrectly evaluate
to_regclass
,to_regnamespace
,to_regproc
,to_regprocedure
,to_regrole
, andto_regtype
builtin functions when the query using them happened to be evaluated in distributed fashion. The bug has been present since the introduction of these builtins in 23.1 and is now fixed. #147362 - Fixed a bug that caused the optimizer to ignore index hints when optimizing some forms of prepared statements. This could result in one of two unexepcted behaviors: a query errors with the message
index cannot be used for this query
when the index can actually be used; or a query uses an index that does not adhere to the hint. The hints relevant to this bug are regular index hints, e.g.,SELECT * FROM tab@index
,FORCE_INVERTED_INDEX
, andFORCE_ZIGZAG
. #147368 - Fixed a bug where the
pg_catalog.pg_policy
table could contain duplicate OID values when multiple tables had policies with the same policy ID. All rows inpg_policy
now have unique OIDs as required. #147373 - Fixed a bug where the
rolbypassrls
column inpg_roles
andpg_authid
tables always returned false, even for roles with theBYPASSRLS
option. #147357 - Fixed a bug that could cause stable expressions to be folded in cached query plans. The bug could cause stable expressions like
current_setting
to return the wrong result if used in a prepared statement. The bug was introduced in point releases v23.2.22, v24.1.14, v24.3.9, and v25.1.2, and the v25.2 alpha. #147187 - Fixed an issue where updating child metrics and reinitializing metrics at the same time could cause scrape errors. #147486
- Fixed a runtime panic in the
substring_index
function that occurred when the count argument was the minimum 64-bit integer value. #147546 - Fixed a memory leak in index backfill jobs where completed spans were duplicated in memory on each progress update after resuming from a checkpoint. This could cause out-of-memory (OOM) errors when backfilling indexes on large tables with many ranges. This bug affected release version v25.2.0 and pre-release versions v25.2.0-alpha.3 through v25.2.0-rc.1. #147511
- Fixed a bug where prepared statements on schema changes could fail with runtime errors. #147658
Performance improvements
- Prepared statements are now more efficiently cached. #144021
- Prepared statements are now more efficiently cached. #144021
- TTL jobs now respond to cluster topology changes by restarting and rebalancing across available nodes. #145214
Miscellaneous
Missing category
- Fixes an issue with LDR where the presence of a unique index may cause spurious DLQ entries if the unique index has a smaller index id than the primary key index. #147117
- Scheduled backups now prevent multiple compaction jobs from running in parallel on its backups. #145930
backup.compaction.window_size
must be at least 3 instead of 2. #145895- Compaction jobs now properly fail upon encountering range keys. #144958
Changes without release note annotation
- #145195 13835e918 kv: extract KVBatch service from Internal service and remove api_drpc_hacky
- #145195 3853e29f5 kv: extract KVBatch service from Internal service and remove api_drpc_hacky
- #147548 0d303dab5 crosscluster/physical: skip TestAlterTenantAddReader under deadlock
- #147520 f54b19227 roachprod: add changefeed.stage.* metrics
- #147306 0a8379e73 sql: maintain backref during restore of trigger
- #147311 071c31b5c drt: update YAML configurations and scripts for 300-node scale cluster
- #147067 94b9f3f75 roachtest-operations: fix node-kill
- #147022 303c52245 cloud: redact azure secret keys in URI
- #145078 111b77369 failureinjection: introduce Failer wrapper for using FailureModes
- #146638 17693edbe roachtest: extend timeout for fine grained checkpointing
- #146084 e4a172f62 kvserver,kvnemesis: dump raft logs on failure
- #146084 43206d17d kvserver,kvnemesis: dump raft logs on failure
- #146084 888e80501 kvserver,kvnemesis: dump raft logs on failure
- #146084 7915dfada kvserver,kvnemesis: dump raft logs on failure
- #146084 ca33f1660 kvserver,kvnemesis: dump raft logs on failure
- #146084 34955a649 kvserver,kvnemesis: dump raft logs on failure
- #146084 873b5bb9e kvserver,kvnemesis: dump raft logs on failure
- #146624 5f0eb7d74 kvcoord: flush all revisions of buffered write when necessary
- #146072 054b66d25 github-pull-request-make: unbreak stress diff pkg detection on rel branches
- #146359 155ee48f0 metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 cc7ccae3a metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 c083ea439 metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 360f92ac0 metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 5c21a7b8b metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 879776795 metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 8c7fcd0d5 metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 42e2f952c metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146359 ccd901442 metric,tenantcostserver: fix bug in UpdateIfHigher and use counters
- #146183 b1274e5d0 status: unredact health alerts
- #146622 dd899c63a roachprod: add new metrics
- #146458 cc8948629 docgen: expose WITH/WITHOUT HOLD syntax in SQL cursor diagram
- #145431 f87566ef5 roachtest: Test fine grained checkpointing
- #146296 72a1b4b74 changefeedccl: turn on verbose logging for TestChangefeedCursor
- #142901 6d84b6220 roachprod-microbench: failure groups
- #142901 c21085622 roachprod-microbench: failure groups
- #146285 b7fe53ab7 roachtest: init providers in main(), not init()
- #146298 a10c45e64 revert "sql: remove old hyperloglog version"
- #146298 56151d2a9 revert "sql: remove old hyperloglog version"
- #146353 45e5f2ef0 roachtest: bump http timeout in quit roachtest
- #145113 b3849a872 drpc,bazel: add protoc-gen-go-drpc compiler and integrate with Bazel/Gazelle
- #146201 0e85be2e6 roachprod: use az sdk for checking for live migrations
- #146267 ff1b7d5e5 kvserver: skip test on failed re-listen
- #146073 e432e7609 kvcoord: add debugging for TestDistSenderReplicaStall
- #146181 3e7c4395b tenanttokenbucket: improve redacted logging
- #146069 6d76a2910 kvserver: logging improvements for TestAtomicReplicationChange
- #146069 f92bb23af kvserver: logging improvements for TestAtomicReplicationChange
- #146069 964403236 kvserver: logging improvements for TestAtomicReplicationChange
- #146069 f1c9905ac kvserver: logging improvements for TestAtomicReplicationChange
- #145899 a198a4422 roachtest: start workload after initial scan
- #145417 cc9cfb5b6 kvserver,snaprecv: move MultiSSTWriter
- #145417 69854cbb2 kvserver,snaprecv: move MultiSSTWriter
- #145417 763afb3f8 kvserver,snaprecv: move MultiSSTWriter
- #145417 d3e3d3023 kvserver,snaprecv: move MultiSSTWriter
- #145417 ad9fdc65e kvserver,snaprecv: move MultiSSTWriter
- #145417 53c301bee kvserver,snaprecv: move MultiSSTWriter
- #145417 19b3db691 kvserver,snaprecv: move MultiSSTWriter
- #145417 3d45ccea7 kvserver,snaprecv: move MultiSSTWriter
- #144458 584d9d885 workload: use multi region partitioner in auditor
- #144573 ff410e1db roachprod: suppress metamorphic constants when checking binary version
- #145106 b5145b915 roachprod: add CLI option to download certs dir
- #144751 fbaf2bd3c ui: enhance metric display
- #144218 16ddb9763 roachtest/allocbench: Add labels to the std-dev metric
- #144218 8b29e4802 roachtest/allocbench: Add labels to the std-dev metric
- #144613 2094de2f7 kvserver: hard-code RangeKeysInOrder=true
- #144613 36cd0048b kvserver: hard-code RangeKeysInOrder=true
- #144613 f6c2815c0 kvserver: hard-code RangeKeysInOrder=true
- #144613 36c25f9b5 kvserver: hard-code RangeKeysInOrder=true
- #144390 57c707a48 roachprod/roachtest: add detection for live VM migrations on Azure
- #144390 4aeb6482d roachprod/roachtest: add detection for live VM migrations on Azure
- #144300 a92e01689 authors: Add Abhishek Munnolimath to Authors
- #144180 795db86c3 fix: ttl job description doesnot quote key column
- #144285 c5ad4f032 kvserver: improve TestMultiSSTWriterInitSST
- #144285 2610e17b8 kvserver: improve TestMultiSSTWriterInitSST
- #144285 61c44b64a kvserver: improve TestMultiSSTWriterInitSST
- #144284 131867856 drt: fix issue with add-index
- #143926 17bdf425d roachtest: Add unit labels in clusterstatscollector aggregate output
- #143431 f4c660d0d stop: run closers in reverse order