e5b5fcd MariaDB switched to using "DBD::MariaDB" Perl database driver instead of the "DBD::mysql" in MariaDB 10.5.0 version

Authored and Committed by mschorm 3 years ago
1 file changed. 5 lines added. 2 lines removed.
    MariaDB switched to using "DBD::MariaDB" Perl database driver instead of the "DBD::mysql" in MariaDB 10.5.0 version
    
    Upstream issue:
      https://jira.mariadb.org/browse/MDEV-19755
    
    Upstream commit:
      https://github.com/MariaDB/server/commit/5cc2096f93b7f130b36f8bc0fc43440db9a848e4#diff-8576e5effae0770fc984e35e6749c43a8946489a1b478ce54facb3b9086622bf
    
    Scripts that rely on a specific driver won't work with differently named driver
    Following scripts are affected:
      mysql_convert_table_format.sh
      mysql_setpermission.sh
      mysqlhotcopy.sh
      mytop.sh
    as well as several tests for various components
    
    So changing the required package to match the needs of the scripts
    
    Testing:
    Following command:
      mysql_setpermission --user=root --host=127.0.0.1 --port=3306
    Would fail with:
      install_driver(MariaDB) failed: Can't locate DBD/MariaDB.pm in @INC (you may need to install the DBD::MariaDB module)
    
        
file modified
+5 -2