immudb icon indicating copy to clipboard operation
immudb copied to clipboard

immudb - immutable database based on zero trust, SQL/Key-Value/Document model, tamperproof, data change history

Results 220 immudb issues
Sort by recently updated
recently updated
newest added

**I am trying to connect postgresql port 5432 using **pgAdmin/DBeaver** but not connected I got this error in pgAdmin** `**'ServerManager' object has no attribute 'user_info'** ` **The server is running...

enhancement
SQL

**What happened** Update/Insert Timestamp doesn't work with PostgreSQL SQL syntax. It throws exception as "org.postgresql.util.PSQLException: ERROR: value is not a timestamp: invalid value provided" That would be the result of...

enhancement
SQL

**What would you like to be added or enhanced** It would be useful to have a simple HTTP endpoint, to use with docker and kubernetes health check. Even better, we...

enhancement

This PR adds a result to the TxSQLExec api, which currently only returns an empty result. The new result contains number of affected rows as well as the last inserted...

This PR provides automatic type conversion based on column specified type and provided varchar value (for integer and boolean types). e.g. ```sql CREATE TABLE mytable(id INTEGER, name VARCHAR, active BOOLEAN,...

enhancement
Component::immudb

Running immudb with a large number of entries per transaction results in large demand for RAM. **How to reproduce** - Start immudb with 20 480 entries per transaction setting. -...

**What would you like to be added or enhanced** Immudb tools (immuclient/immuadmin) are sometimes difficult to use in a script: the main focus seems to be interactive use, and often...

enhancement

The home directory of `immu` user is missing in the image, so the following error `open /home/immu/token_admin: no such file or directory` occurred when `./bin/immuadmin login immudb` is done, and...

Users should be able to set the # of entries per transactions as environment variable. Currently users have to change in the source code and compile the binaries to change...

enhancement

Currently the embedded package exposes some metrics directly using prometheus. We should remove this dependency leaving prometheus metrics only inside pkg/server package and introducing abstract interfaces instead. Notes about btree...