(self, keyspace)
| 196 | self._keyspace_added(ks_name) |
| 197 | |
| 198 | def _drop_keyspace(self, keyspace): |
| 199 | if self.keyspaces.pop(keyspace, None): |
| 200 | self._keyspace_removed(keyspace) |
| 201 | |
| 202 | def _update_table(self, meta): |
| 203 | try: |
nothing calls this directly
no test coverage detected