From: Greg Sabino Mullane Date: Sat, 17 Feb 2007 20:06:37 +0000 (+0000) Subject: Parse InnoDB defs with max_rows and avg_row_length specifiers. X-Git-Tag: 1.31.0-rc.0~54013 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/password.php?a=commitdiff_plain;h=bbcde00fa0a02dc4a7113016f45a9a79fd25f35e;p=lhc%2Fweb%2Fwiklou.git Parse InnoDB defs with max_rows and avg_row_length specifiers. --- diff --git a/maintenance/postgres/compare_schemas.pl b/maintenance/postgres/compare_schemas.pl index ae5f86c503..d8b4148924 100644 --- a/maintenance/postgres/compare_schemas.pl +++ b/maintenance/postgres/compare_schemas.pl @@ -51,7 +51,7 @@ $indextype = qr{$indextype}; my $engine = qr{TYPE|ENGINE}; -my $tabletype = qr{InnoDB|MyISAM|HEAP|HEAP MAX_ROWS=\d+}; +my $tabletype = qr{InnoDB|MyISAM|HEAP|HEAP MAX_ROWS=\d+|InnoDB MAX_ROWS=\d+ AVG_ROW_LENGTH=\d+}; my $charset = qr{utf8|binary};