ckurze

Results 9 comments of ckurze

While euclidean distance focuses on the absolute magnitude difference between vectors, cosine similarity focuses on the angular difference, and dot product considers both the magnitude and angular difference. The choice...

Another option would be the implementation of something like a MERGE statement, i.e. recalculate the new data in the source table and merge it into a target table: https://docs.oracle.com/en/database/oracle/oracle-database/12.2/sqlrf/MERGE.html ```sql...

> > Another option would be the implementation of something like a MERGE statement, i.e. recalculate the new data in the source table and merge it into a target table:...

Highlighting that it is not the raw value might help (but for dates the value of bigint is shown). I think we only need to change line 80 here: https://github.com/crate/crate-admin/blob/5abdc1485bbf4b725419dc012339e46fd1bf5ced/app/scripts/filter/text.js#L80...

I think this is the same/similar as https://github.com/crate/crate/issues/15768? At the moment, we use Euclidian Distance per default, but users might want to have Cosine and Dot Product due to a...

I would not rename the section, "Drivers and Integrations" sounds good to me.

> Workaround for `to_timestamp` (not all formats are supported): Unfortunately, the UDF is not used when executing queries from reporting tools, e.g. GoodData.

Note: When preparing and testing the sample data, I ran into https://github.com/crate/crate/issues/16617#issuecomment-2365175867

Unfortunately, it also does not work for me with a regular build, e.g. 5.9.11: ``` docker run --rm --name cratedb_5911 --publish 4200:4200 --publish 5432:5432 --publish 80:80 --env CRATE_HEAP_SIZE=2g crate:5.9.11 -Cdiscovery.type=single-node...