(t)
| 22 | |
| 23 | |
| 24 | def _include_table(t): |
| 25 | if _get_includes() is not None: |
| 26 | return any([t.startswith(p) for p in _get_includes()]) |
| 27 | return not any([t.startswith(p) for p in _get_excludes()]) |
| 28 | |
| 29 | |
| 30 | def connection_schema_cache_key(connection_id): |
no test coverage detected