-
-
Notifications
You must be signed in to change notification settings - Fork 86
Description
ArcadeDB Version: ArcadeDB Server v21.11.1-SNAPSHOT (build a51ac33/1637325918552/main)
JDK Version: openjdk version "11.0.13" 2021-10-19
OS: Alpine Linux v3.14.3
Expected behavior
Connecting using the Postgres official command-line client with the PostgresProtocolPlugin driver install will work.
Actual behavior
Any queries attempted to be run against the database return an error "Error on executing query: null"
Steps to reproduce
Running the latest version of ArcadeDB from Docker Hub:
docker run --pull always -d --rm --name arcadedb -v
pwd/data:/home/arcadedb/databases -p 6379:6379 -p 5432:5432 -p 2480:2480 -p 2424:2424 --env arcadedb.server.rootPassword=playwithdata --env arcadedb.server.plugins="Redis:com.arcadedb.redis.RedisProtocolPlugin,Postgres:com.arcadedb.postgres.PostgresProtocolPlugin" arcadedata/arcadedb:latest
Attempting to connect and run a command using official psql command line client:
$ psql -U root -h 127.0.0.1 game_1_0
Password for user root:
psql (10.19 (Ubuntu 10.19-0ubuntu0.18.04.1), server 10.5)
Type "help" for help.game_1_0=> select from Item;
ERROR: Error on executing query: null