Christian Himpe

Results 151 comments of Christian Himpe

May be the server script is run from the wrong folder. Can you post the contents of the `entrypoint.sh`? BTW: you could consider using the ready endpoint `/api/V1/ready` for the...

This could be due to file permissions. You can temporarily give all the files in the mounted folders all permissions like `777` and see if it works. I ran into...

Trying from studio (`24.11.2-SNAPSHOT`), I get no response form the server sending the second `CREATE INDEX ... IF NOT EXISTS`. From console (`24.11.2-SNAPSHOT`) I get an empty response.

More info: the error above happens for remote connections from the console. For local connections an empty response is given.

Using either `UPDATE ... MERGE ... UPSERT` or `UPDATE ... CONTENT ... UPSERT` produces too many index results.

Here is some more testing which may help locate the source: * Both sorting directions `ASC` and `DESC` produce these duplicate results but different numbers: 146 for `ASC`, and 117...

More testing reveals: * Using multiple order keys like `ORDER BY publicationYear, name` returns the correct amount of results. @lvca This does also not use the `publicationYear` index, right? *...

@robfrank Here is another test case using 25.1.1. It is the smallest I could produce yet with 39 records: [metadatalake-backup-20250130-122441030.zip](https://github.com/user-attachments/files/18601697/metadatalake-backup-20250130-122441030.zip) The query: `SELECT name FROM metadata ORDER BY publicationYear` produces...

Here is some more info that may help: * The records are UPSERTed (see example above) via the HTTP `command` endpoint using the `SQLscript` language. * A `Unique` index is...