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
@@ -164,7 +164,7 @@ public function clean( $_, $assoc_args ) {
164
164
);
165
165
166
166
foreach ( $tablesas$table ) {
167
-
self::run_query(
167
+
$this->run_query(
168
168
sprintf(
169
169
'DROP TABLE IF EXISTS `%s`.`%s`',
170
170
DB_NAME,
@@ -199,7 +199,7 @@ public function clean( $_, $assoc_args ) {
199
199
* : Extra arguments to pass to mysqlcheck. [Refer to mysqlcheck docs](https://dev.mysql.com/doc/en/mysqlcheck.html).
200
200
*
201
201
* [--defaults]
202
-
* : Removes the "--no-defaults" flag normally passed to MySQL allowing it to use the default my.cnf or one specified with the MYSQL_HOME environment variable.
202
+
* : Loads the environment's MySQL option files. Default behavior is to skip loading them to avoid failures due to misconfiguration.
203
203
*
204
204
* ## EXAMPLES
205
205
*
@@ -208,7 +208,7 @@ public function clean( $_, $assoc_args ) {
@@ -242,7 +242,7 @@ public function check( $_, $assoc_args ) {
242
242
* : Extra arguments to pass to mysqlcheck. [Refer to mysqlcheck docs](https://dev.mysql.com/doc/en/mysqlcheck.html).
243
243
*
244
244
* [--defaults]
245
-
* : Removes the "--no-defaults" flag normally passed to MySQL allowing it to use the default my.cnf or one specified with the MYSQL_HOME environment variable.
245
+
* : Loads the environment's MySQL option files. Default behavior is to skip loading them to avoid failures due to misconfiguration.
246
246
*
247
247
* ## EXAMPLES
248
248
*
@@ -251,8 +251,8 @@ public function check( $_, $assoc_args ) {
@@ -285,7 +285,7 @@ public function optimize( $_, $assoc_args ) {
285
285
* : Extra arguments to pass to mysqlcheck. [Refer to mysqlcheck docs](https://dev.mysql.com/doc/en/mysqlcheck.html).
286
286
*
287
287
* [--defaults]
288
-
* : Removes the "--no-defaults" flag normally passed to MySQL allowing it to use the default my.cnf or one specified with the MYSQL_HOME environment variable.
288
+
* : Loads the environment's MySQL option files. Default behavior is to skip loading them to avoid failures due to misconfiguration.
289
289
*
290
290
* ## EXAMPLES
291
291
*
@@ -294,8 +294,8 @@ public function optimize( $_, $assoc_args ) {
@@ -327,7 +327,7 @@ public function repair( $_, $assoc_args ) {
327
327
* : Extra arguments to pass to mysql. [Refer to mysql docs](https://dev.mysql.com/doc/en/mysql-command-options.html).
328
328
*
329
329
* [--defaults]
330
-
* : Removes the "--no-defaults" flag normally passed to MySQL allowing it to use the default my.cnf or one specified with the MYSQL_HOME environment variable.
330
+
* : Loads the environment's MySQL option files. Default behavior is to skip loading them to avoid failures due to misconfiguration.
331
331
*
332
332
* ## EXAMPLES
333
333
*
@@ -339,8 +339,8 @@ public function repair( $_, $assoc_args ) {
@@ -370,7 +370,7 @@ public function cli( $args, $assoc_args ) {
370
370
* : Extra arguments to pass to mysql. [Refer to mysql docs](https://dev.mysql.com/doc/en/mysql-command-options.html).
371
371
*
372
372
* [--defaults]
373
-
* : Removes the "--no-defaults" flag normally passed to MySQL allowing it to use the default my.cnf or one specified with the MYSQL_HOME environment variable.
373
+
* : Loads the environment's MySQL option files. Default behavior is to skip loading them to avoid failures due to misconfiguration.
374
374
*
375
375
* ## EXAMPLES
376
376
*
@@ -404,8 +404,8 @@ public function cli( $args, $assoc_args ) {
@@ -448,7 +448,7 @@ public function query( $args, $assoc_args ) {
448
448
* : Output filename for the exported database.
449
449
*
450
450
* [--defaults]
451
-
* : Removes the "--no-defaults" flag normally passed to MySQL allowing it to use the default my.cnf or one specified with the MYSQL_HOME environment variable.
451
+
* : Loads the environment's MySQL option files. Default behavior is to skip loading them to avoid failures due to misconfiguration.
452
452
*
453
453
* ## EXAMPLES
454
454
*
@@ -522,8 +522,8 @@ public function export( $args, $assoc_args ) {
@@ -594,7 +594,7 @@ public function export( $args, $assoc_args ) {
594
594
* : When using an SQL file, do not include speed optimization such as disabling auto-commit and key checks.
595
595
*
596
596
* [--defaults]
597
-
* : Removes the "--no-defaults" flag normally passed to MySQL allowing it to use the default my.cnf or one specified with the MYSQL_HOME environment variable.
597
+
* : Loads the environment's MySQL option files. Default behavior is to skip loading them to avoid failures due to misconfiguration.
598
598
*
599
599
* ## EXAMPLES
600
600
*
@@ -630,8 +630,8 @@ public function import( $args, $assoc_args ) {
0 commit comments