summaryrefslogtreecommitdiff
path: root/mysql-test/suite/client
Commit message (Collapse)AuthorAgeFilesLines
* MDEV-8334: Rename utf8 to utf8mb3Rucha Deodhar2021-05-192-4/+4
| | | | | | This patch changes the main name of 3 byte character set from utf8 to utf8mb3. New old_mode UTF8_IS_UTF8MB3 is added and set TRUE by default, so that utf8 would mean utf8mb3. If not set, utf8 would mean utf8mb4.
* A cleanup for MDEV-17088 Provide tools to encode/decode mysql-encoded file ↵Alexander Barkov2019-12-058-20/+86
| | | | | | | | | | | | | | | | system names - Load and convert the entire input file at once, rather than reading string-by-string using fgets(). This change makes it possible to convert from UCS2, UTF16, UTF32 data. - Adding the --delimiter command, to treat the specified characters as delimiters rather than data to convert. Useful in combination with `-f filename` or `-t filename`. The delimiter characters are not converted, they are copied from the input to the output as is. - Adding diagnostics with line number and position if: * an illegal input byte sequence was found * a character cannot be converted to the target character set
* A cleanup for MDEV-17088: disabling mariadb-conv-*.test for embeddedAlexander Barkov2019-11-302-0/+4
|
* MDEV-17088 Provide tools to encode/decode mysql-encoded file system namesAlexander Barkov2019-11-286-0/+240
The original patch was made by Takashi Sasaki <tsasaki609@gmail.com>.