Georg Traar
Georg Traar
I think this sentence in the `README.md` is a bit misleading in that context > The CrateDB endpoints are provided in a configuration file, which defaults to config.yml (-config.file flag)....
Hi @jiexixi To retrieve large resultsets (i.e. larger than what would fit in the heap) you need to either use a client / driver that supports a fetch size like...
PostgreSQL has the `||` (concatenate) operator also available for `JSONB` Values > from https://www.postgresql.org/docs/9.5/functions-json.html > concatenate two jsonb values into a new jsonb value > > **Note**: The || operator...
The concatenate operator is already implemented for `array` values i.e. ```sql SELECT [1,2] || [3], array_cat([1,2], [3]) ``` already works for coherence one might also think about implementing concatenating `array`...
Hi @loredp Welcome to `crate/crate`! Could you be more explicit what you mean with "lucene analysis plugin"? To you maybe have a link? CrateDB does support all kinds of Lucene...
> Dear @gotcha, > > > > thanks for your quick reply. CI/GHA on behalf of [test-buildout-python310] is running on classic Intel. @proddata also might want to tell us about...
~~on the fence if this is a breaking change, as previously any `SET`ting would have been ignored and not run into an exception 🤷♀️ ~~ There should be an exception,...
I went with a different approach and would appreciate feedback.
> What's `default database name` referring to? I think it is in almost all of our documentation we are referring to use `doc` as database name for any (postgres) connection...
Seems like the `database` name is used to create the session https://github.com/crate/crate/blob/ee0cc45ad83ac3f3f806ad12bdef110d8204e2d9/server/src/main/java/io/crate/protocols/postgres/PostgresWireProtocol.java#L448-L453 and then use it as default db schema https://github.com/crate/crate/blob/ee0cc45ad83ac3f3f806ad12bdef110d8204e2d9/server/src/main/java/io/crate/action/sql/SQLOperations.java#L98-L106