Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
1.5.3
-
None
-
CentOS 7
Description
An error occurs if the schema name or the table name is specified as a multi-byte character in information_schema.table_usage().
# mysql -e "create database if not exists test;"
|
# mysql -e "set names utf8;create table test.テーブル(i int) engine columnstore";
|
# mysql -e "set names utf8;call columnstore_info.table_usage('test', 'テーブル');";
|
ERROR 1366 (22007) at line 1: Incorrect string value: '\xE3\x83\x86\xE3\x83\xBC...' for column ``.``.`t_name` at row 1
|