Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#245: Removed last references to exasol_bucketfs_utils_python #246

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
## Refactorings

* #224: Replaced references to old BucketFS API with new API
* #245: Removed last references to `exasol_bucketfs_utils_python`
2 changes: 1 addition & 1 deletion doc/user_guide/example-udf-script/create.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ from exasol.analytics.query_handler.context.query_handler_context import QueryHa
from exasol.analytics.query_handler.query.result.interface import QueryResult
from exasol.analytics.query_handler.result import Result, Continue, Finish
from exasol.analytics.query_handler.query.select import SelectQuery, SelectQueryWithColumnDefinition
from exasol.analytics.query_handler.context.proxy.bucketfs_location_proxy import BucketFSLocationProxy
from exasol.analytics.query_handler.context.proxy.bucketfs_location_proxy import BucketFSLocationProxy
from exasol.analytics.schema import (
Column,
ColumnType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
from abc import ABC
from typing import List, Sized

from exasol_bucketfs_utils_python.abstract_bucketfs_location import (
AbstractBucketFSLocation,
)
import exasol.bucketfs as bfs

from exasol.analytics.query_handler.graph.stage.sql.input_output import (
SQLStageInputOutput,
Expand All @@ -19,7 +17,7 @@ def is_empty(obj: Sized):
@dataclasses.dataclass(eq=True)
class SQLStageQueryHandlerInput:
sql_stage_inputs: List[SQLStageInputOutput]
result_bucketfs_location: AbstractBucketFSLocation
result_bucketfs_location: bfs.path.PathLike

def __post_init__(self):
if is_empty(self.sql_stage_inputs):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ build-backend = "poetry.core.masonry.api"
module = [
"pandas.*", "exasol.bucketfs.*", "pyexasol.*", "exasol.pytnsion_common.*",
"networkx.*", "exasol_udf_mock_python.*", "joblib.*",
"exasol.python_extension_common.*", "exasol_bucketfs_utils_python.*", ]
"exasol.python_extension_common.*", ]
ignore_missing_imports = true


Expand Down
Loading