(self)
| 2919 | self.keyspace_table_edge_rows = defaultdict(lambda: defaultdict(list)) |
| 2920 | |
| 2921 | def get_all_keyspaces(self): |
| 2922 | for keyspace_meta in super(SchemaParserDSE68, self).get_all_keyspaces(): |
| 2923 | self._build_graph_metadata(keyspace_meta) |
| 2924 | yield keyspace_meta |
| 2925 | |
| 2926 | def get_table(self, keyspaces, keyspace, table): |
| 2927 | table_meta = super(SchemaParserDSE68, self).get_table(keyspaces, keyspace, table) |
nothing calls this directly
no test coverage detected