Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.

Commit 574ca33

Browse files
#54: Removed the conversion (#57)
* Removed the conversion * Updated changelog Co-authored-by: Marlene Kreß <marlene.kress@gmx.de>
1 parent 1f1d7cc commit 574ca33

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,3 +137,6 @@ poetry.lock
137137
# Sphinx
138138
doc/_build
139139
doc/api
140+
141+
# Language container
142+
.build_output

doc/changes/changes_0.2.0.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ Code name: t.b.d
88

99
## Bug Fixes
1010

11+
- #54: Removed PosixPath conversion from alter session string
12+
1113
## Documentation
1214

1315
## Refactoring
1416

17+
- #58: Added Python type hints
18+
1519
## Security
1620

1721
- #51: Added fixed numpy version build from source because of Buffer Overflow vulnerability in NumPy

tests/fixtures/upload_language_container_fixture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def upload_language_container(pyexasol_connection, language_container):
3131
pwd=container_connection.password,
3232
base_path=None)
3333
container_path = Path(language_container["container_path"])
34-
alter_session = Path(language_container["alter_session"])
34+
alter_session = language_container["alter_session"]
3535
pyexasol_connection.execute(f"ALTER SESSION SET SCRIPT_LANGUAGES='{alter_session}'")
3636
with open(container_path, "rb") as container_file:
3737
container_bucketfs_location.upload_fileobj_to_bucketfs(container_file, "ml.tar")

0 commit comments

Comments
 (0)