Skip to content

Commit

Permalink
#75 Fixed the bucketfs_location tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 4, 2024
1 parent 633706c commit 43e0be2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class ConnectionInfo:
This is not a connection object. It's just a structure to keep together the data
required for creating a BucketFs connection object. Useful for testing.
"""
to: str
address: str
user: str
password: str

Expand All @@ -130,7 +130,7 @@ def write_bucketfs_conn_object(pyexasol_connection: pyexasol.ExaConnection,
conn_obj: ConnectionInfo) -> None:

query = (f"CREATE OR REPLACE CONNECTION {conn_name} "
f"TO '{conn_obj.to}' "
f"TO '{conn_obj.address}' "
f"USER '{conn_obj.user}' "
f"IDENTIFIED BY '{conn_obj.password}'")
pyexasol_connection.execute(query)
Expand Down

0 comments on commit 43e0be2

Please sign in to comment.