mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
ba9d231b5a
- Use corresponding entry in the manifest, as described in https://docs.microsoft.com/en-us/windows/apps/design/globalizing/use-utf8-code-page - If if ANSI codepage is UTF8 (i.e for Windows 1903 and later) Use UTF8 as default client charset Set console codepage(s) to UTF8, in case process is using console - Allow some previously disabled MTR tests, that used Unicode for in "exec", for the recent Windows versions
13 lines
476 B
Text
13 lines
476 B
Text
--source include/not_embedded.inc
|
||
--source include/check_utf8_cli.inc
|
||
|
||
#
|
||
# Bug#21432 Database/Table name limited to 64 bytes, not chars, problems with multi-byte
|
||
#
|
||
set names utf8;
|
||
create user юзер_юзер@localhost;
|
||
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;
|