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"
6
6
name = " superduper-framework"
7
7
description = " 🔮 Bring AI to your favourite database 🔮"
8
8
readme = " README.md"
9
- version = ' 0.5.38 '
9
+ version = ' 0.5.39 '
10
10
license = {file = " LICENSE" }
11
11
maintainers = [{name = " superduper.io, Inc." , email = " opensource@superduper.com" }]
12
12
keywords = [
Original file line number Diff line number Diff line change 15
15
from superduper .misc .importing import import_object
16
16
from superduper .misc .plugins import load_plugin
17
17
18
+
19
+ TABLE_PREFIX = 'SUPERDUPER_'
20
+
18
21
try :
19
22
import magic
20
23
except ImportError :
@@ -274,13 +277,7 @@ def describe_tables(db: 'Datalayer' = DatalayerDependency()):
274
277
for t in out
275
278
if (
276
279
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 )
284
281
)
285
282
]
286
283
You can’t perform that action at this time.
0 commit comments