Christian Himpe
Christian Himpe
This seems to be a regression as I remember successfully testing this example myself. Maybe this is related in kind to https://github.com/ArcadeData/arcadedb/issues/1941 .
This would allow to overwrite the root password not only for its intended purpose when used inside a container but also on bare metal installs. I am not sure if...
Using the debug setting I got this query was send from DbSchema: ``` SELECT nspname AS TABLE_SCHEM, NULL AS TABLE_CATALOG FROM pg_catalog.pg_namespace WHERE nspname 'pg_toast' AND (nspname !~ '^pg_temp_' OR...
Hi, there is: * For types (cf tables): `SELECT FROM schema:types` * For indexes: `SELECT FROM schema:indexes` * For database settings: `SELECT FROM schema:database` The corresponding DDL command would be...
Hi, so one way to do this is to use the `server.rootPasswordPath` setting, which points to a file containing the password. For example with Docker Compose you can pass a...
> ... which is only called when root account does not exist. Isn't that the point? So you provide a generic ArcadeDB image which is on every instantiation specialized with...
Hmm, so but you only want to alter the root password as I understand you(?). You could delete the line for the root user from the external `server-users.jsonl` file and...
IS the problem only occurring if all four indexes are used, or also if you only use the three non-unique indexes or only the unique composite index?
I understand, the idea was if the composite unique index is the problem, then adding a fourth property being a hash of the other three and index that instead could...
Hi, AFAIK parameters and variables can/should only be used in "typed syntax", meaning anywhere a typed value, ie a string, integer etc would go, and not somewhere untyped syntax, ie,...