You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current metadata can be visualized either showing all the details, including table names, fields and keys, or showing no text at all (each table is just a box).
It would be convenient to have an intermediate format which indicates the name of each table and nothing else.
Expected behavior
The new feature could be accessed as follows:
metadata.visualize(names=True, details=True) # showing everything. This is the defaultmetadata.visualize() # same as the line abovemetadata.visualize(names=False) # shows no names at all, just empty boxesmetadata.visualize(names=False, details=True) # shows table names, but no details
The text was updated successfully, but these errors were encountered:
Problem Description
The current metadata can be visualized either showing all the details, including table names, fields and keys, or showing no text at all (each table is just a box).
It would be convenient to have an intermediate format which indicates the name of each table and nothing else.
Expected behavior
The new feature could be accessed as follows:
The text was updated successfully, but these errors were encountered: