We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c7f0a commit 798fe50Copy full SHA for 798fe50
features/bootstrap/FeatureContext.php
@@ -857,7 +857,8 @@ public function install_wp( $subdir = '' ) {
857
mkdir( $install_cache_path );
858
self::dir_diff_copy( $run_dir, self::$cache_dir, $install_cache_path );
859
860
- $support_column_statistics = exec( '/usr/bin/env mysqldump --help | grep "column-statistics"' );
+ $mysqldump_binary = Utils\force_env_on_nix_systems( 'mysqldump' );
861
+ $support_column_statistics = exec( "{$mysqldump_binary} --help | grep 'column-statistics'" );
862
$command = 'mysqldump --no-defaults';
863
if ( $support_column_statistics ) {
864
$command .= ' --skip-column-statistics';
0 commit comments