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

Bug/postgres pattern #2397

Merged
merged 2 commits into from
Aug 18, 2024
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: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,5 +305,4 @@ Test release before v0.2

## [0.0.5](https://github.com/superduper-io/superduper/compare/0.0.5...0.0.4]) (2023-Aug-15)


## 0.0.4 (2023-Aug-03)
2 changes: 1 addition & 1 deletion superduper/backends/local/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(
self,
uri: t.Optional[str] = None,
queue: BaseQueuePublisher = LocalQueuePublisher(),
kwargs: t.Dict = {},
**kwargs,
):
self.__outputs: t.Dict = {}
self.uri = uri
Expand Down
9 changes: 5 additions & 4 deletions superduper/base/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class _MetaDataLoader(_Loader):
r'^mongodb\+srv:\/\/': ('mongodb', 'atlas'),
r'^mongomock:\/\/': ('mongodb', 'mongomock'),
r'^sqlite:\/\/': ('sqlalchemy', 'base'),
r'^postgres:\/\/': ('sqlalchemy', 'base'),
r'^postgresql:\/\/': ('sqlalchemy', 'base'),
r'^snowflake:\/\/': ('sqlalchemy', 'base'),
r'^duckdb:\/\/': ('sqlalchemy', 'base'),
r'^mssql:\/\/': ('sqlalchemy', 'base'),
Expand All @@ -68,7 +68,7 @@ class _DataBackendLoader(_Loader):
r'^mongodb\+srv:\/\/': ('mongodb', 'atlas'),
r'^mongomock:\/\/': ('mongodb', 'mongomock'),
r'^sqlite://': ('ibis', 'base'),
r'^postgres://': ('ibis', 'base'),
r'^postgresql://': ('ibis', 'base'),
r'^duckdb://': ('ibis', 'base'),
r'^mssql://': ('ibis', 'base'),
r'^mysql://': ('ibis', 'base'),
Expand All @@ -82,8 +82,9 @@ class _ArtifactStoreLoader(_Loader):
r'^filesystem:\/\/': ('local', 'base'),
r'^mongomock:\/\/': ('local', 'base'),
r'^mongodb\+srv:\/\/': ('mongodb', 'atlas'),
r'^mongodb:\/\/': ('mongodb', 'mongodb'),
r'sqlite:': ('local', 'base'),
r'^mongodb:\/\/': ('mongodb', 'base'),
r'^sqlite:\/\/': ('local', 'base'),
r'^postgresql:\/\/': ('local', 'base'),
}


Expand Down
Loading