diff --git a/bin/pt-table-checksum b/bin/pt-table-checksum index 6be21987..3264b7b2 100755 --- a/bin/pt-table-checksum +++ b/bin/pt-table-checksum @@ -5885,6 +5885,9 @@ sub get_checksum_columns { elsif ( $trim && $type =~ m/varchar/ ) { $result = "TRIM($result)"; } + elsif ( $type =~ m/blob|text|binary/ ) { + $result = "CRC32($result)"; + } $result; } grep {