exasol / test-db-builder-java

Java library for creating and cleaning up test database structures and contents for integration tests
MIT License
1 stars 1 forks source link

Support connections with empty username but password #87

Closed jakobbraun closed 2 years ago

jakobbraun commented 2 years ago

The unified connection definition requires connections like:

CREATE OR REPLACE CONNECTION S3_CONNECTION
TO ''
USER ''
IDENTIFIED BY '{
  "awsAccessKeyId": "<AWS_ACCESS_KEY>",
  "awsSecretAccessKey": "<AWS_SECRET_KEY>",
  "awsRegion": "<SESSION_TOKEN>",
  "s3Bucket": "<BUCKET_NAME>"
}';

Currently, TDBJ can't create this connection since it can not create connections with a password but no username.