mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
27a7365f42
It should work ok on all Unixes, but on Windows ,only worked by accident in the past, with client not being Unicode safe. It stopped working with Visual Studio 2017 15.7 update now.
13 lines
490 B
Text
13 lines
490 B
Text
# UTF8 parameters to mysql client do not work on Windows
|
||
--source include/not_windows.inc
|
||
--source include/not_embedded.inc
|
||
|
||
#
|
||
# Bug#21432 Database/Table name limited to 64 bytes, not chars, problems with multi-byte
|
||
#
|
||
set names utf8;
|
||
grant select on test.* to юзер_юзер@localhost;
|
||
--exec $MYSQL --default-character-set=utf8 --user=юзер_юзер -e "select user()"
|
||
revoke all on test.* from юзер_юзер@localhost;
|
||
drop user юзер_юзер@localhost;
|
||
set names default;
|