You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -149,19 +149,19 @@ Feature: Utilities that do NOT depend on WordPress code
149
149
"""
150
150
And save STDOUT as {DB_HOST_STRING}
151
151
152
-
When I try `mysql --database={DB_NAME} --user={DB_ROOT_USER} --password={DB_ROOT_PASSWORD} {DB_HOST_STRING} -e "SET GLOBAL max_allowed_packet=64*1024*1024;"`
152
+
When I try `{MYSQL_BINARY} --database={DB_NAME} --user={DB_ROOT_USER} --password={DB_ROOT_PASSWORD} {DB_HOST_STRING} -e "SET GLOBAL max_allowed_packet=64*1024*1024;"`
153
153
Then the return code should be 0
154
154
155
155
# This throws a warning because of the password.
156
-
When I try `mysql --database={DB_NAME} --user={DB_USER} --password={DB_PASSWORD} {DB_HOST_STRING} < test_db.sql`
156
+
When I try `{MYSQL_BINARY} --database={DB_NAME} --user={DB_USER} --password={DB_PASSWORD} {DB_HOST_STRING} < test_db.sql`
157
157
Then the return code should be 0
158
158
159
159
# The --skip-column-statistics flag is not always present.
160
-
When I try `mysqldump --help | grep -q 'column-statistics' && echo '--skip-column-statistics'`
160
+
When I try `{SQL_DUMP_COMMAND} --help | grep -q 'column-statistics' && echo '--skip-column-statistics'`
0 commit comments