I looked up what "auto rehashing" is and found:
this appears to be specific to the "mysql" command line client in that it has autocompletion enabled for table names and such, which has to do with intercepting your typing of characters into the program; this is part of a unix system called "readline".
The situation with a Python database API is completely different in that there is no command line program running and no relevance for something like "readline" or intercepting of characters, so this option does not apply to a Python DBAPI or SQLAlchemy's create_engine. For example, the native mysqlclient DBAPI defines this API:
https://mysqlclient.readthedocs.io/user_guide.html#functions-and-attributes which does not express any autocompletion concept.
--
SQLAlchemy -
The Python SQL Toolkit and Object Relational Mapper
---
You received this message because you are subscribed to the Google Groups "sqlalchemy" group.