diff options
author | Rucha Deodhar <rucha.deodhar@mariadb.com> | 2021-02-08 14:52:04 +0530 |
---|---|---|
committer | Rucha Deodhar <rucha.deodhar@mariadb.com> | 2021-04-06 16:40:42 +0530 |
commit | 58df9e3446ba05efd49aa6a5519ed55df32e3a4f (patch) | |
tree | 68273fa001b5267c290b7f89ca51cdc54b13ff99 /scripts/mysqlaccess.sh | |
parent | de407e7cb4d12574806bf4f7830e73908d5ca9e2 (diff) | |
download | mariadb-git-bb-10.6-MDEV-22010.tar.gz |
MDEV-22010: use executables MariaDB named in scriptsbb-10.6-MDEV-22010
As a part of this MDEV following changes were made:
1) Mariadb named executables used instead of mysql named executables in scripts
2) renamed mysql-test-run and mysql-stress-test to mariadb-test-run and
mariadb-stress-test and created a symlink.
Diffstat (limited to 'scripts/mysqlaccess.sh')
-rw-r--r-- | scripts/mysqlaccess.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mysqlaccess.sh b/scripts/mysqlaccess.sh index aaf711b0fb9..f6dbee75b87 100644 --- a/scripts/mysqlaccess.sh +++ b/scripts/mysqlaccess.sh @@ -35,7 +35,7 @@ BEGIN { # **************************** # information on MariaDB - $MYSQL = '@bindir@/mysql'; # path to mysql executable + $MYSQL = '@bindir@/mariadb'; # path to mariadb executable $SERVER = '3.21'; $MYSQL_OPT = ' --batch --unbuffered'; $ACCESS_DB = 'mysql'; # name of DB with grant-tables @@ -50,8 +50,8 @@ BEGIN { $ACCESS_U_BCK = 'user_backup'; $ACCESS_D_BCK = 'db_backup'; $DIFF = '/usr/bin/diff'; - $MYSQLDUMP = '@bindir@/mysqldump'; - #path to mysqldump executable + $MYSQLDUMP = '@bindir@/mariadb-dump'; + #path to mariadb-dump executable $MYSQLADMIN= 'http://foobar.com/MySQLadmin'; #URL of CGI for manipulating |