We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73bb59 commit af2006cCopy full SHA for af2006c
datajoint/schemas.py
@@ -481,7 +481,7 @@ def list_tables(self):
481
t
482
for d, t in (
483
full_t.replace("`", "").split(".")
484
- for full_t in Diagram(self).topo_sort()
+ for full_t in self.connection.dependencies.topo_sort()
485
)
486
if d == self.database
487
]
@@ -530,7 +530,6 @@ def __init__(
530
531
def list_schemas(connection=None):
532
"""
533
-
534
:param connection: a dj.Connection object
535
:return: list of all accessible schemas on the server
536
0 commit comments