You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
152448: changefeedccl: protect system tables with their own pts record r=andyyang890 a=aerfrei
Previously, we were relying on each pts record that protects
a user table to also protect system tables. This would mean
that we'd protect the system tables once for each table.
Now, we have a dedicated pts record for system tables that
protects back to the highwater and do not include the system
table protections in the table specific records. We only
protect the system tables once.
Fixes: #152446
Epic: CRDB-1421
Release note: None
155701: jobsprotectedtsccl: move to jobsprotectedts r=msbutler a=stevendanna
These tests are now allowed to live in the jobs package so the jobsccl package is no longer require.
Epic: none
Release note: None
156190: changefeedccl: update timestamp on event descriptor cache hits r=andyyang890 a=aerfrei
Before, in some cases we could replan a CDC query with an
old timestamp from the event descriptor cache, which would
try to read the database descriptor at an old potentially
garbage collected timestamp.
Now, we make sure the event descriptor cache always gives
events descriptors with an up to date timestamp.
Epic: none
Fixes: #156091
Release note (bug fix): A bug where changefeeds using CDC
queries could sometimes unexpectedly fail after a schema
change with a descriptor retrieval error has been fixed.
156416: sql/jsonpath: support index acceleration with AnyKey (`*`) at the chain end r=ZhouXing19 a=ZhouXing19
fixes: #156340
We now support index accelerating `jsonb_path_exists` filters with json path expression that ends with an AnyKey (`*`).
Note that the AnyKey is allowed only at the end of the expression. I.e. the following are not allowed:
```
$.a.*.b
$.a.b.*.*
```
Release note (sql change): We now support index accelerating `jsonb_path_exists` filters with json path expression that ends with an AnyKey (`*`).
Co-authored-by: Aerin Freilich <aerin.freilich@cockroachlabs.com>
Co-authored-by: Steven Danna <danna@cockroachlabs.com>
Co-authored-by: ZhouXing19 <zhouxing@uchicago.edu>
0 commit comments