|
| 1 | +## v25.1.0-rc.1 |
| 2 | + |
| 3 | +Release Date: February 10, 2025 |
| 4 | + |
| 5 | +{% include releases/new-release-downloads-docker-image.md release=include.release %} |
| 6 | + |
| 7 | +<h3 id="v25-1-0-rc-1-backward-incompatible-changes">Backward-incompatible changes</h3> |
| 8 | + |
| 9 | +- The default value of the `autocommit_before_ddl` session variable is now `true`. This will cause any schema change statement that is sent during a transaction to make the current transaction commit before executing the schema change in a separate transaction. |
| 10 | + |
| 11 | + This change is being made because CockroachDB does not have full support for multiple schema changes in a transaction, as described [here]({% link v25.1/online-schema-changes.md %}#schema-changes-within-transactions). |
| 12 | + |
| 13 | + Users who do not desire the autocommit behavior can preserve the old behavior by changing the default value of `autocommit_before_ddl` with a command such as: |
| 14 | + |
| 15 | + ``` ALTER ROLE ALL SET autocommit_before_ddl = false; ``` |
| 16 | + |
| 17 | + [#140156][#140156] |
| 18 | + |
| 19 | +<h3 id="v25-1-0-rc-1-sql-language-changes">SQL language changes</h3> |
| 20 | + |
| 21 | +- Since v23.2, table statistics histograms have been collected for non-indexed JSON columns. Histograms are no longer collected for these columns. This reduces memory usage during table statistics collection, for both automatic and manual collection via `ANALYZE` and `CREATE STATISTICS`. The previous behavior can be re-enabled by setting the cluster setting `sql.stats.non_indexed_json_histograms.enabled` to `true`. [#139898][#139898] |
| 22 | +- Added the session setting `optimizer_prefer_bounded_cardinality` which instructs the optimizer to prefer query plans where every expression has a guaranteed upper-bound on the number of rows it will process. This may help the optimizer produce better query plans in some cases. This setting is disabled by default. [#140245][#140245] |
| 23 | +- Added the session setting `optimizer_min_row_count` which sets a lower bound on row-count estimates for relational expressions during query planning. A value of zero, which is the default, indicates no lower bound. Note that if this is set to a value greater than zero, a row count of zero can still be estimated for expressions with a cardinality of zero, e.g., for a contradictory filter. Setting this to a value higher than 0, such as 1, may yield better query plans in some cases, such as when statistics are frequently stale and inaccurate. [#140245][#140245] |
| 24 | +- Fixed a bug existing only in testing releases of v25.1 that could cause unexpected errors during planning for `VALUES` expressions containing function calls with multiple overloads. [#140306][#140306] |
| 25 | +- The default setting for `plan_cache_mode` has been reverted to `force_custom_plan`, after being changed to `auto` in a [prior testing release]({% link releases/v25.1.md %}#v25-1-0-alpha-1). You can disregard the [previous release note]({% link releases/v25.1.md %}#v25-1-0-alpha-1-performance-improvements). [#140405][#140405] |
| 26 | + |
| 27 | +<h3 id="v25-1-0-rc-1-bug-fixes">Bug fixes</h3> |
| 28 | + |
| 29 | +- Fixed a bug that could cause `SHOW TABLES` and other introspection operations to encounter a `batch timestamp ... must be after replica GC threshold` error. [#140078][#140078] |
| 30 | +- Fixed a bug existing only in testing releases of v25.1 that could cause the creation of a PL/pgSQL routine with a CTE to fail with an error similar to: `unexpected root expression: with`. [#140145][#140145] |
| 31 | +- Fixed a rare bug in which a query might fail with error `could not find computed column expression for column ... in table` while dropping a virtual computed column from the table. This bug was introduced in v23.2.4. [#139834][#139834] |
| 32 | +- Configuring replication controls on a partition name of an index that is not unique across all indexes will now correctly impact only that partition. [#140293][#140293] |
| 33 | +- The Data Distribution page in Advanced Debug will no longer crash if there are `NULL` values for `raw_sql_config` in `crdb_internal.zones`. [#140609][#140609] |
| 34 | + |
| 35 | +[#139834]: https://github.com/cockroachdb/cockroach/pull/139834 |
| 36 | +[#139898]: https://github.com/cockroachdb/cockroach/pull/139898 |
| 37 | +[#140078]: https://github.com/cockroachdb/cockroach/pull/140078 |
| 38 | +[#140089]: https://github.com/cockroachdb/cockroach/pull/140089 |
| 39 | +[#140145]: https://github.com/cockroachdb/cockroach/pull/140145 |
| 40 | +[#140156]: https://github.com/cockroachdb/cockroach/pull/140156 |
| 41 | +[#140245]: https://github.com/cockroachdb/cockroach/pull/140245 |
| 42 | +[#140252]: https://github.com/cockroachdb/cockroach/pull/140252 |
| 43 | +[#140293]: https://github.com/cockroachdb/cockroach/pull/140293 |
| 44 | +[#140306]: https://github.com/cockroachdb/cockroach/pull/140306 |
| 45 | +[#140405]: https://github.com/cockroachdb/cockroach/pull/140405 |
| 46 | +[#140609]: https://github.com/cockroachdb/cockroach/pull/140609 |
| 47 | +[2ea91e321]: https://github.com/cockroachdb/cockroach/commit/2ea91e321 |
| 48 | +[62c075413]: https://github.com/cockroachdb/cockroach/commit/62c075413 |
| 49 | +[76944423e]: https://github.com/cockroachdb/cockroach/commit/76944423e |
0 commit comments