(dialect, schema)
| 3005 | |
| 3006 | |
| 3007 | def _owner_plus_db(dialect, schema): |
| 3008 | if not schema: |
| 3009 | return None, dialect.default_schema_name |
| 3010 | else: |
| 3011 | return _schema_elements(schema) |
| 3012 | |
| 3013 | |
| 3014 | _memoized_schema = util.LRUCache() |
no test coverage detected