From 8fa06b9904cdbebdff8d80bdd1f10df9c6b9fd27 Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 20 Jun 2023 06:20:00 +0000 Subject: [PATCH] Bug 34064: Remove no_batch_alters option This change removes the no_batch_alters option. When working with real world databases, you really want to use batch alters to group together changes. Otherwise, the output becomes too overwhelming/unwieldy. On real world databases, I'm noticing big discrepancies, although I think most of the time this is a difference in the collation at the column level. Signed-off-by: Owen Leonard --- misc/maintenance/audit_database.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/misc/maintenance/audit_database.pl b/misc/maintenance/audit_database.pl index d84d9af93f6..d64f9bbc43e 100755 --- a/misc/maintenance/audit_database.pl +++ b/misc/maintenance/audit_database.pl @@ -25,7 +25,6 @@ if ($sql_schema && $db_schema){ output_db => 'MySQL', source_schema => $db_schema, target_schema => $sql_schema, - no_batch_alters => 1, })->compute_differences->produce_diff_sql; print $diff; -- 2.30.2