We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb0f800 commit 1adee9dCopy full SHA for 1adee9d
features/utils.feature
@@ -156,7 +156,8 @@ Feature: Utilities that do NOT depend on WordPress code
156
When I try `mysql --database={DB_NAME} --user={DB_USER} --password={DB_PASSWORD} {DB_HOST_STRING} < test_db.sql`
157
Then the return code should be 0
158
159
- When I run `mysqldump --help | grep -q 'column-statistics' && echo '--skip-column-statistics'`
+ # The --skip-column-statistics flag is not always present.
160
+ When I try `mysqldump --help | grep -q 'column-statistics' && echo '--skip-column-statistics'`
161
Then save STDOUT as {SKIP_COLUMN_STATISTICS_FLAG}
162
163
# This throws a warning because of the password.
0 commit comments