From 8eb4929551997f700ac30044d57eeb0556305956 Mon Sep 17 00:00:00 2001 From: Eduardo Broto Date: Wed, 10 Jul 2019 17:18:02 +0200 Subject: [PATCH] Suggest using mariadb-sys from FromDual in README.md The one from good-dba seems to be outdated. The suggested one was updated a couple weeks ago and has been tested with success against MariaDB 10.3 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf0aa06..d4d182a 100644 --- a/README.md +++ b/README.md @@ -118,12 +118,12 @@ By default, on MariaDB, performance schema is disabled by default. consider acti You can follow this command to create a new database sys containing very useful view on Performance schema: - curl "https://codeload.github.com/good-dba/mariadb-sys/zip/master" > mariadb-sys.zip + curl "https://codeload.github.com/FromDual/mariadb-sys/zip/master" > mariadb-sys.zip # check zip file unzip -l mariadb-sys.zip unzip mariadb-sys.zip cd mariadb-sys-master/ - mysql -u root -p < ./mariadb_sys_install.sql + mysql -u root -p < ./sys_10.sql Performance tips --