Skip to content

Commit

Permalink
[PLUGINS] Bump Version [sqlalchemy | ibis]
Browse files Browse the repository at this point in the history
  • Loading branch information
kartik4949 committed Jan 4, 2025
1 parent dde16fe commit 779a8ca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/ibis/superduper_ibis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .data_backend import IbisDataBackend as DataBackend
from .query import IbisQuery

__version__ = "0.4.7"
__version__ = "0.4.8"

__all__ = ["IbisQuery", "DataBackend"]
2 changes: 1 addition & 1 deletion plugins/sqlalchemy/superduper_sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .metadata import SQLAlchemyMetadata as MetaDataStore

__version__ = "0.4.5"
__version__ = "0.4.6"

__all__ = ['MetaDataStore']
7 changes: 5 additions & 2 deletions superduper/backends/base/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ def batched(self):
"""Batched metadata updates."""
return False

def expire(self):
"""Expire metadata batch cache if any."""
def expire(self, uuid: str):
"""Expire metadata batch cache if any.
:param uuid: uuid to expire.
"""

@abstractmethod
def delete_parent_child(self, parent: str, child: str):
Expand Down

0 comments on commit 779a8ca

Please sign in to comment.