(self, config)
| 2033 | ) |
| 2034 | |
| 2035 | def _has_mysql_on_windows(self, config): |
| 2036 | with config.db.connect() as conn: |
| 2037 | return ( |
| 2038 | against(config, ["mysql", "mariadb"]) |
| 2039 | ) and config.db.dialect._detect_casing(conn) == 1 |
| 2040 | |
| 2041 | def _has_mysql_fully_case_sensitive(self, config): |
| 2042 | with config.db.connect() as conn: |
nothing calls this directly
no test coverage detected