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
New connections to Clickhouse always use the default schema. USE schema command is processed successfully to change schema, but if the schemaname is specific only during connection phase it is ignored.
Example:
mysql -u clicku -pclickp -h 127.0.0.1 --database=mydb -P6090
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 452
Server version: 5.5.30 (ProxySQL ClickHouse Module)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> select * from mytable limit 1;
ERROR 1148 (42000): DB::Exception: Table default.mytable doesn't exist.
The text was updated successfully, but these errors were encountered:
New connections to Clickhouse always use the
default
schema.USE schema
command is processed successfully to change schema, but if the schemaname is specific only during connection phase it is ignored.Example:
The text was updated successfully, but these errors were encountered: