Commit ce643dda authored by Daniel Black's avatar Daniel Black Committed by Alexander Barkov

MDEV-8765: mysqldump -use utf8mb4 by default

Bump mysqldump to a version greater than that on the 10.3 branch.
parent 7e869a27
......@@ -39,7 +39,7 @@
** 10 Jun 2003: SET NAMES and --no-set-names by Alexander Barkov
*/
#define DUMP_VERSION "10.16"
#define DUMP_VERSION "10.17"
#include <my_global.h>
#include <my_sys.h>
......
......@@ -1054,7 +1054,9 @@ typedef ulong myf; /* Type of MyFlags in my_funcs */
#include <my_byteorder.h>
#ifdef HAVE_CHARSET_utf8
#ifdef HAVE_CHARSET_utf8mb4
#define MYSQL_UNIVERSAL_CLIENT_CHARSET "utf8mb4"
#elif defined(HAVE_CHARSET_utf8)
#define MYSQL_UNIVERSAL_CLIENT_CHARSET "utf8"
#else
#define MYSQL_UNIVERSAL_CLIENT_CHARSET MYSQL_DEFAULT_CHARSET_NAME
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment