Version 5.10.14¶
Released on 2025-11-03.
Note
If you are upgrading a cluster, you must be running CrateDB 4.0.2 or higher before you upgrade to 5.10.14.
We recommend that you upgrade to the latest 5.9 release before moving to 5.10.14.
A rolling upgrade from 5.9.x to 5.10.14 is supported. Before upgrading, you should back up your data.
Warning
Tables that were created before CrateDB 4.x will not function with 5.x and must be recreated before moving to 5.x.x.
You can recreate tables using COPY TO and COPY FROM or by
inserting the data into a new table.
Table of contents
See the Version 5.10.0 release notes for a full list of changes in the 5.10 series.
Fixes¶
Improved
WHEREclause analysis for queries on tables with bothPARTITION BYandCLUSTERED BYclause to narrow the partitions and shards that are hit if the query filters on thePARTITIONED BYandCLUSTERED BYcolumns. An example:CREATE TABLE tbl (x int, c int, p int) clustered by (c) partitioned by (p); SELECT * FROM tbl WHERE c = 1 and p = 1;
In this case the query will only search in the partition
p=1and hit a single shard depending on the routing forc=1Fixed an issue resulting in stuck Jobs entries when an INSERT statement using VALUES results in an execution error, e.g. due to implicit cast or parsing issues.
Fixed a replication issue happening when an integral value, not fitting to
INTorLONGtypes, was stored in an OBJECT with policyIGNORED.