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

[MAINTENANCE] Remove legacy DataConnectors #9923

Merged
merged 28 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f3ad074
remove azure data connector
joshua-stauffer May 13, 2024
ca42c45
remove glue
joshua-stauffer May 13, 2024
81d6dee
remove dbfs
joshua-stauffer May 13, 2024
6531151
another azure
joshua-stauffer May 13, 2024
b4b847e
remove sql
joshua-stauffer May 13, 2024
02bee22
remove s3
joshua-stauffer May 13, 2024
823373c
remove gcs
joshua-stauffer May 13, 2024
6a2c375
remove file path/ filesystem
joshua-stauffer May 13, 2024
46404f6
remove runtime
joshua-stauffer May 13, 2024
32fd97e
remove base and utils
joshua-stauffer May 13, 2024
9c08aec
refactor utils logic to where its being used
joshua-stauffer May 13, 2024
8e0c2b9
remove asset
joshua-stauffer May 13, 2024
dfd553a
remove datetime sorter
joshua-stauffer May 13, 2024
3f2db60
remove custom list sorter
joshua-stauffer May 13, 2024
c01b993
remove dictionary sorter
joshua-stauffer May 13, 2024
1542893
remove lexicographic sorter
joshua-stauffer May 13, 2024
ed0546b
remove numeric sorter
joshua-stauffer May 13, 2024
d671458
remove sorter
joshua-stauffer May 13, 2024
be67d3d
cleanup unused init modules
joshua-stauffer May 13, 2024
d6ba1f2
move batch filter to fluent
joshua-stauffer May 13, 2024
25e12ef
remove batch kwarg generator
joshua-stauffer May 13, 2024
555806f
[MAINTENANCE] Remove DatasourceConfig (#9916)
tyler-hoffman May 13, 2024
4c65cc2
[MAINTENANCE] Ruff `0.4.4` (#9918)
Kilo59 May 13, 2024
853c809
replace data connector logic with dummy batch def
joshua-stauffer May 14, 2024
c7eb19c
Merge branch 'develop' into m/v1/remove_file_path_dc
joshua-stauffer May 14, 2024
c677893
split out InferredAssetSqlDataConnector logic for use in test cleanup
joshua-stauffer May 14, 2024
7e0da47
cleanup reference in pyproject.toml
joshua-stauffer May 14, 2024
8708885
fix indent error
joshua-stauffer May 14, 2024
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
2 changes: 1 addition & 1 deletion great_expectations/core/batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from typing_extensions import NotRequired, TypeAlias

from great_expectations.alias_types import JSONValues
from great_expectations.datasource.data_connector.batch_filter import BatchSlice
from great_expectations.datasource.fluent.data_connector.batch_filter import BatchSlice

Check warning on line 33 in great_expectations/core/batch.py

View check run for this annotation

Codecov / codecov/patch

great_expectations/core/batch.py#L33

Added line #L33 was not covered by tests
from great_expectations.datasource.fluent.interfaces import (
Batch as FluentBatch,
)
Expand Down
1 change: 0 additions & 1 deletion great_expectations/datasource/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
from .data_connector.data_connector import DataConnector

This file was deleted.

This file was deleted.

Loading
Loading