Skip to content

Commit 26332a0

Browse files
committed
Bump Version 0.5.39
1 parent 8b3986d commit 26332a0

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "superduper-framework"
77
description = "🔮 Bring AI to your favourite database 🔮"
88
readme = "README.md"
9-
version = '0.5.38'
9+
version = '0.5.39'
1010
license = {file = "LICENSE"}
1111
maintainers = [{name = "superduper.io, Inc.", email = "opensource@superduper.com"}]
1212
keywords = [

superduper/rest/build.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
from superduper.misc.importing import import_object
1616
from superduper.misc.plugins import load_plugin
1717

18+
19+
TABLE_PREFIX = 'SUPERDUPER_'
20+
1821
try:
1922
import magic
2023
except ImportError:
@@ -274,13 +277,7 @@ def describe_tables(db: 'Datalayer' = DatalayerDependency()):
274277
for t in out
275278
if (
276279
not t.startswith(CFG.output_prefix)
277-
and t.lower()
278-
not in {
279-
'component',
280-
'job',
281-
'parent_child_association',
282-
'artifact_relations',
283-
}
280+
and not t.lower().startswith(TABLE_PREFIX)
284281
)
285282
]
286283

0 commit comments

Comments
 (0)