Georg Traar

Results 120 comments of Georg Traar

@suahelen There is currently no concrete plan to implement this in CrateDB itself. However, table policies are available in [CrateDB Cloud](https://console.cratedb.cloud/). There is also a [community post to implement retention...

CrateDB currently only supports `SET SESSION AUTHORIZATION` (and only for superusers), which changes the session user entirely, affecting both privileges and ownership. CrateDB does not support `SET ROLE` yet, which...

> For 1 & 2. I'd tend to keep the behavior for now but leave it undefined/undocumented until there's a concrete use-case for either direction Do you consider this as...

The [crate/crate](https://hub.docker.com/r/crate/crate) Docker images are also highly relevant for CrateDB Cloud, as it is used for testing on non-prod channels. Both AWS and Azure are increasingly focusing on ARM-based offerings....

> I'm confused, is this about Mac ARM64 or about Linux ARM64 images? Linux-based Docker Images for ARM Architecture _(that can be run on Docker desktop for Mac)_

> Running the latest crate docker image 5.10.1 on my MacOS 15.3 ARM M3 with Rosetta enabled works without any issue and without any special setting. But you are using...

> Could you elaborate a bit on why this would lead to a polling behaviour? It is really either a long standing connection or checking if all queries are done....

I slightly updated the request to better reflect the actual intention. This could be the basis for any sort of cron job like scheduler (internal or external) and be used...

> What exactly is the use case for the generated columns? mostly just quick(er) sorting / filtering (and realising composite indices) after initial table creation. I don't know about the...

A workaround is to use [array_unique()](https://cratedb.com/docs/crate/reference/en/latest/general/builtins/scalar-functions.html#array-unique-first-array-second-array) ```sql select array_unique([1,2,3,1,3]); -- [1,2,3] ``` ```sql select array_to_string(array_unique([1,2,3,1,3]),' | '); -- 1 | 2 | 3 ```