(db_connection)
| 59 | |
| 60 | |
| 61 | def schema_info(db_connection): |
| 62 | key = connection_schema_cache_key(db_connection.id) |
| 63 | ret = cache.get(key) |
| 64 | if ret: |
| 65 | return ret |
| 66 | else: |
| 67 | return build_schema_cache_async(db_connection.id) |
| 68 | |
| 69 | |
| 70 | def clear_schema_cache(db_connection): |
no test coverage detected