(dialect, connection, schema=None, **kw)
| 2934 | |
| 2935 | def _db_plus_owner_listing(fn): |
| 2936 | def wrap(dialect, connection, schema=None, **kw): |
| 2937 | dbname, owner = _owner_plus_db(dialect, schema) |
| 2938 | return _switch_db( |
| 2939 | dbname, |
| 2940 | connection, |
| 2941 | fn, |
| 2942 | dialect, |
| 2943 | connection, |
| 2944 | dbname, |
| 2945 | owner, |
| 2946 | schema, |
| 2947 | **kw, |
| 2948 | ) |
| 2949 | |
| 2950 | return update_wrapper(wrap, fn) |
| 2951 |
nothing calls this directly
no test coverage detected