File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed
Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66name = " superduper-framework"
77description = " 🔮 Bring AI to your favourite database 🔮"
88readme = " README.md"
9- version = ' 0.5.38 '
9+ version = ' 0.5.39 '
1010license = {file = " LICENSE" }
1111maintainers = [{
name =
" superduper.io, Inc." ,
email =
" [email protected] " }]
1212keywords = [
Original file line number Diff line number Diff line change 1515from superduper .misc .importing import import_object
1616from superduper .misc .plugins import load_plugin
1717
18+
19+ TABLE_PREFIX = 'SUPERDUPER_'
20+
1821try :
1922 import magic
2023except 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
You can’t perform that action at this time.
0 commit comments