Description
hi
i got table not exist error on the proxysql log in this scenario :
proxy sql configured with only 1 backend server, one rule for that backend server is the default .so every query must be routed to that backend server .
queries on php script :
- create a temporary table
- insert into that table
- select from that table.
i read some issues in here, it looks like it somehow related to mysql-multiplexing , and as i understand proxysql should detect temporary table queries and set mysql-multiplexing to false for that connection .
but it does not .
i have done some tests .
i set mysql-multiplexing to false , then it works as i expect it, but i don't want to sacrifice the benefits of mysql-multiplexing,
is there in way to work with temporary tables but have mysql-multiplexing enabled , it is ok to disabled it temporarily for the current session of the script .
thanks :)