不注意到这个变化的话,还挺折腾人的。
在MySQL 8.0.19 Release Notes里,有这么一段话:
When the mysql client operates in interactive mode, the --binary-as-hex option now is enabled by default. In addition, output from the status (or \s) command includes this line when the option is enabled implicitly or explicitly。To disable hexadecimal notation, use --skip-binary-as-hex (Bug #24432545)
意思是如果用mysql客户端进入交互模式,那么默认启用参数 --binary-as-hex,执行 status
或 \s
时能看到下面这样的标记:
[[email protected]]> \s
...
Binary data as: Hexadecimal
...
Threads: 1 Questions: 88...
可以在启动客户端时加上--skip-binary-as-hex关闭这个参数。
那么加上参数--binary-as-hex后,对交互式客户端会有什么影响呢?
先看下文档里的解释:
When this option is given, mysql displays binary data using hexadecimal notation (0xvalue).
也就是说,当查询到的数据有二进制数据的话,就会用十六进制方式展示出来。
看看下面的例子吧:(建议在PC端或横版观看)
# 在 --skip-binary-as-hex 模式下
# 用CHAR()函数能把二进制转成ASCII字符
[[email protected]]> SELECT CHAR(77,121,83,81,'76');
+-------------------------+
| CHAR(77,121,83,81,'76') |
+-------------------------+
| MySQL |
+-------------------------+
# 在 --binary-as-hex(8.0.19后默认) 模式下
# 直接把二进制数据以十六进制输出了
...
Server characterset: utf8mb4
...
UNIX socket: /mysql/data01/mysql.sock
Binary data as: Hexadecimal
[[email protected]]> SELECT CHAR(77,121,83,81,'76');
+--------------------------------------------------+
| CHAR(77,121,83,81,'76') |
+--------------------------------------------------+
| 0x4D7953514C |
+--------------------------------------------------+
看起来是不是觉得怪怪的,很不适应。
新参数--binary-as-hex是MySQL 5.6.37版本开始引入的,由一位叫做Daniël van Eeden的哥们建议加入的
标签:binary,...,--,variables,hex,CHAR,mysql From: https://blog.51cto.com/u_11571552/12120135