You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that MySQL 8 client issues select DATABASE(), USER() limit 1 when running \s , forcing to have a backend connection.
We are already handling select DATABASE(), USER() limit 1 in Admin and Clickhouse: we need to handle it also on MySQL module without the need of any backend.
The text was updated successfully, but these errors were encountered:
Handles special queries executed by the STATUS command in mysql cli .
Specifically:
- "select DATABASE(), USER() limit 1"
- "select @@character_set_client, @@character_set_connection, @@character_set_server, @@character_set_database limit 1"
Closes#4396Closes#4426
It seems that MySQL 8 client issues
select DATABASE(), USER() limit 1
when running\s
, forcing to have a backend connection.We are already handling
select DATABASE(), USER() limit 1
in Admin and Clickhouse: we need to handle it also on MySQL module without the need of any backend.The text was updated successfully, but these errors were encountered: