[Rt-commit] rt branch, 5.0-trunk, updated. rt-5.0.0alpha1-2-gb94ac9ee2

? sunnavy sunnavy at bestpractical.com
Wed Feb 19 17:31:34 EST 2020


The branch, 5.0-trunk has been updated
       via  b94ac9ee23eaaf69f78baffc1852ba36f0ed66f1 (commit)
       via  105831eb0ec3dd892d4b04a62b3070526545a8a6 (commit)
      from  97b25b3a611ce044c6c0278549784ad8142dd237 (commit)

Summary of changes:
 README.MariaDB | 5 ++++-
 README.MySQL   | 3 ---
 2 files changed, 4 insertions(+), 4 deletions(-)

- Log -----------------------------------------------------------------
commit 105831eb0ec3dd892d4b04a62b3070526545a8a6
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Feb 20 05:42:26 2020 +0800

    No need to specify character-set for mysqldump because client above includes it

diff --git a/README.MySQL b/README.MySQL
index 1ac84c83b..f02fe761e 100644
--- a/README.MySQL
+++ b/README.MySQL
@@ -34,9 +34,6 @@ character-set-server = utf8mb4
 [client]
 default-character-set = utf8mb4
 
-[mysqldump]
-default-character-set = utf8mb4
-
 You can check the values your server is using by running this command:
 
     mysqladmin variables | grep -i character_set

commit b94ac9ee23eaaf69f78baffc1852ba36f0ed66f1
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Thu Feb 20 05:43:53 2020 +0800

    Split character-set options for server/client as they have different names
    
    Otherwise, mysql clients won't work.

diff --git a/README.MariaDB b/README.MariaDB
index 149f1ffa2..29766ed32 100644
--- a/README.MariaDB
+++ b/README.MariaDB
@@ -26,9 +26,12 @@ correct character set.
 
 This is done by adding the following lines to the MariaDB configuration:
 
-[client-server]
+[mysqld]
 character-set-server = utf8mb4
 
+[client]
+default-character-set = utf8mb4
+
 You can check the values your server is using by running this command:
     mysqladmin variables | grep -i character_set
 

-----------------------------------------------------------------------


More information about the rt-commit mailing list