From 7a371529be027635e484d20aade333e002787300 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 6 Jul 2017 10:06:03 +0200 Subject: [PATCH] Implement "drop indexes" option for MySQL and MSSQL too. It was only offered for SQLite without good reason really, and tests show that it works as well with MySQL of course. Offer the option there too. See 3eab88b1440a8166786e90b95f563d153e2ba4dc for details. --- src/parsers/command-mssql.lisp | 1 + src/parsers/command-mysql.lisp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/parsers/command-mssql.lisp b/src/parsers/command-mssql.lisp index 4cfee17..f583782 100644 --- a/src/parsers/command-mssql.lisp +++ b/src/parsers/command-mssql.lisp @@ -21,6 +21,7 @@ option-batch-size option-prefetch-rows option-max-parallel-create-index + option-reindex option-truncate option-disable-triggers option-data-only diff --git a/src/parsers/command-mysql.lisp b/src/parsers/command-mysql.lisp index d0c6e40..7e14200 100644 --- a/src/parsers/command-mysql.lisp +++ b/src/parsers/command-mysql.lisp @@ -17,7 +17,8 @@ option-single-reader option-multiple-readers option-rows-per-range - option-truncate + option-reindex + option-truncate option-disable-triggers option-data-only option-schema-only