mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-08 05:57:49 +00:00
PT-225 pt-table-cheksum ignores generated columns
This commit is contained in:
@@ -10705,7 +10705,7 @@ sub main {
|
||||
# TODO: this now happens in 3 places, search for 'columns'.
|
||||
my $tbl_struct = $tbl->{tbl_struct};
|
||||
my $ignore_col = $o->get('ignore-columns') || {};
|
||||
my $all_cols = $o->get('columns') || $tbl_struct->{cols};
|
||||
my $all_cols = $o->get('columns') || $tbl_struct->{non_generated_cols};
|
||||
my @cols = map { lc $_ }
|
||||
grep { !$ignore_col->{$_} }
|
||||
@$all_cols;
|
||||
|
Reference in New Issue
Block a user