Marcus Gartner
Marcus Gartner
I've updated the CockroachDB tests to use v24.1.0-rc.2.
Marcus Gartner (mgartner) commented: The [inverted index docs](https://www.cockroachlabs.com/docs/stable/inverted-indexes#arrays] do not list all operators for which inverted indexes on ARRAYs and JSON can be used. ### Arrays The following operators in...
Backport: * 1/1 commits from "sql: add plan_cache_mode session setting" (#125708) * 2/2 commits from "opt: add ConvertSelectWithPlaceholdersToJoin exploration rule" (#125795) * 2/2 commits from "opt: improve stats for filters...
This commit addresses inconsistencies from Postgres' behavior. First, it makes the `BPCHAR` type distinct from `CHAR`. The former is a blank-padded character type with no type width, meaning that it...
Backport: * 1/1 commits from "sql: add plan_cache_mode session setting" (#125708) * 2/2 commits from "opt: add ConvertSelectWithPlaceholdersToJoin exploration rule" (#125795) * 2/2 commits from "opt: improve stats for filters...
There was a section in the generic query plans RFC about adding generic query plans to the query cache to be used outside of a prepared statement. I'm not convinced...
CRDB supports a different set of regular expression patterns from Postgres, because we the Go's [standard regexp library](https://pkg.go.dev/regexp) and Postgres uses another. We should document what regular expression patterns we...
Copied from https://github.com/nodejs/docker-node/issues/1082 We've witnessed a consistent memory leak in 2 versions of the node alpine Docker images: `node:10.15.3-alpine` and `node:10.16.0-alpine`. This leak may be present in other versions of...
The docs for `transaction_timeout` state: > Aborts an explicit [transaction](https://www.cockroachlabs.com/docs/v24.3/transactions) when it runs longer than the configured duration. Stored in milliseconds; can be expressed in milliseconds or as an [INTERVAL](https://www.cockroachlabs.com/docs/v24.3/interval)....
The `//gcassert:inline` directive can now be used at assignments of anonymous functions to local variables.